]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/duepuntozero/style.php
@brief is removed completely
[friendica.git] / view / theme / duepuntozero / style.php
index 5d841f1084b85af746d6ef90f655878e6aa223b5..189d5ac400d4f2b4a65de1995e92d1673aa44f93 100644 (file)
@@ -3,22 +3,23 @@
  * @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');
+$colorset = DI::pConfig()->get($uid, 'duepuntozero', 'colorset');
 
-if (!x($colorset)) {
+if (empty($colorset)) {
        $colorset = $s_colorset;
 }
 
+$setcss = '';
+
 if ($colorset) {
        if ($colorset == 'greenzero') {
                $setcss = file_get_contents('view/theme/duepuntozero/deriv/greenzero.css');
@@ -27,7 +28,7 @@ if ($colorset) {
        if ($colorset == 'purplezero') {
                $setcss = file_get_contents('view/theme/duepuntozero/deriv/purplezero.css');
        }
-       
+
        if ($colorset == 'easterbunny') {
                $setcss = file_get_contents('view/theme/duepuntozero/deriv/easterbunny.css');
        }