Move PConfig::load() to DI::pConfig()->load()

This commit is contained in:
Philipp Holzer 2020-01-18 15:59:01 +01:00
commit 6e2880c679
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
2 changed files with 2 additions and 14 deletions

View file

@ -5,6 +5,7 @@
use Friendica\Core\Config;
use Friendica\Core\PConfig;
use Friendica\DI;
use Friendica\Util\Strings;
require_once 'view/theme/frio/php/PHPColors/Color.php';
@ -37,7 +38,7 @@ $login_bg_color = $login_bg_color ?: '#ededed';
// Get the UID of the profile owner.
$uid = $_REQUEST['puid'] ?? 0;
if ($uid) {
PConfig::load($uid, 'frio');
DI::pConfig()->load($uid, 'frio');
// Only override display settings that have actually been set
$scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema')) ?: $scheme;