]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/vier/style.php
Move Config::get() to DI::config()->get()
[friendica.git] / view / theme / vier / style.php
index 196d3776561e165632fcfaa184f55ba206134fd6..9231a9016ecc7840af3ada452f12311a608028c0 100644 (file)
@@ -4,15 +4,14 @@
  */
 use Friendica\Core\Logger;
 use Friendica\Core\Config;
-use Friendica\Core\PConfig;
-use Friendica\Model\Profile;
+use Friendica\DI;
 
-$uid = Profile::getThemeUid();
+$uid = $_REQUEST['puid'] ?? 0;
 
-$style = PConfig::get($uid, 'vier', 'style');
+$style = DI::pConfig()->get($uid, 'vier', 'style');
 
 if (empty($style)) {
-       $style = Config::get('vier', 'style');
+       $style = DI::config()->get('vier', 'style');
 }
 
 if (empty($style)) {
@@ -22,6 +21,8 @@ if (empty($style)) {
 $stylecss = '';
 $modified = '';
 
+$style = \Friendica\Util\Strings::sanitizeFilePathItem($style);
+
 foreach (['style', $style] as $file) {
        $stylecssfile = $THEMEPATH . DIRECTORY_SEPARATOR . $file .'.css';
        if (file_exists($stylecssfile)) {