]> git.mxchange.org Git - friendica.git/commitdiff
Refactor Theme::getStylesheetPath to return faster if theme style.php doesn't exist
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Jan 2019 07:26:16 +0000 (02:26 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Jan 2019 07:26:16 +0000 (02:26 -0500)
src/Core/Theme.php

index 2202780376d7b1762d733db720a45e7f94b8e007..de8cd496a45cd24240f247a6847e2c0e8b84903c 100644 (file)
@@ -193,6 +193,10 @@ class Theme
         */
        public static function getStylesheetPath($theme)
        {
+               if (!file_exists('view/theme/' . $theme . '/style.php')) {
+                       return 'view/theme/' . $theme . '/style.css';
+               }
+
                $a = BaseObject::getApp();
 
                $query_params = [];
@@ -202,10 +206,6 @@ class Theme
                        $query_params['puid'] = $puid;
                }
 
-               if (file_exists('view/theme/' . $theme . '/style.php')) {
-                       return 'view/theme/' . $theme . '/style.pcss' . (!empty($query_params) ? '?' . http_build_query($query_params) : '');
-               }
-
-               return 'view/theme/' . $theme . '/style.css';
+               return 'view/theme/' . $theme . '/style.pcss' . (!empty($query_params) ? '?' . http_build_query($query_params) : '');
        }
 }