]> git.mxchange.org Git - friendica.git/commitdiff
Make style.php require query parameter puid for specific stylesheets
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Jan 2019 07:21:12 +0000 (02:21 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Jan 2019 07:21:12 +0000 (02:21 -0500)
view/theme/duepuntozero/style.php
view/theme/frio/style.php
view/theme/quattro/style.php
view/theme/vier/style.php

index 6d102350cc26e6c1d687aaa6d9ec82933ba05b81..a5810f2dc131cb06237fbe253b645c8867d970c1 100644 (file)
@@ -10,7 +10,7 @@ if (file_exists("$THEMEPATH/style.css")) {
        echo file_get_contents("$THEMEPATH/style.css");
 }
 
-$uid = Profile::getThemeUid();
+$uid = defaults($_REQUEST, 'puid', 0);
 
 $s_colorset = Config::get('duepuntozero', 'colorset');
 $colorset = PConfig::get($uid, 'duepuntozero', 'colorset');
index 7570ae0e5774b13ba52de1b78f39921ffea624ef..d8bffa9c645c4ff048b0b329a2927f7e32d2d4e9 100644 (file)
@@ -14,7 +14,7 @@ $scheme_modified = 0;
 
 if ($a->module !== 'install') {
        // Get the UID of the profile owner.
-       $uid = Profile::getThemeUid();
+       $uid = defaults($_REQUEST, 'puid', 0);
        if ($uid) {
                PConfig::load($uid, 'frio');
 
index 8158468327ac39ae9c10fc2eb5471da60c471000..08756ec4aa63bc16685d2b6aacccbc102d3e93d6 100644 (file)
@@ -6,7 +6,7 @@ use Friendica\Core\Config;
 use Friendica\Core\PConfig;
 use Friendica\Model\Profile;
 
-$uid = Profile::getThemeUid();
+$uid = defaults($_REQUEST, 'puid', 0);
 
 $color = false;
 $quattro_align = false;
index 196d3776561e165632fcfaa184f55ba206134fd6..4dfbe4e268f1a837c1b1f2adc15c4ee09c454fcd 100644 (file)
@@ -7,7 +7,7 @@ use Friendica\Core\Config;
 use Friendica\Core\PConfig;
 use Friendica\Model\Profile;
 
-$uid = Profile::getThemeUid();
+$uid = defaults($_REQUEST, 'puid', 0);
 
 $style = PConfig::get($uid, 'vier', 'style');