]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/duepuntozero/style.php
Move Config::get() to DI::config()->get()
[friendica.git] / view / theme / duepuntozero / style.php
index 6d102350cc26e6c1d687aaa6d9ec82933ba05b81..a3edf813cb1cd063617ae4d362bcabe94dc891c2 100644 (file)
@@ -3,17 +3,16 @@
  * @file view/theme/duepuntozero/style.php
  */
 use Friendica\Core\Config;
-use Friendica\Core\PConfig;
-use Friendica\Model\Profile;
+use Friendica\DI;
 
 if (file_exists("$THEMEPATH/style.css")) {
        echo file_get_contents("$THEMEPATH/style.css");
 }
 
-$uid = Profile::getThemeUid();
+$uid = $_REQUEST['puid'] ?? 0;
 
-$s_colorset = Config::get('duepuntozero', 'colorset');
-$colorset = PConfig::get($uid, 'duepuntozero', 'colorset');
+$s_colorset = DI::config()->get('duepuntozero', 'colorset');
+$colorset = DI::pConfig()->get($uid, 'duepuntozero', 'colorset');
 
 if (empty($colorset)) {
        $colorset = $s_colorset;