From: Hypolite Petovan Date: Sat, 12 Jan 2019 01:01:42 +0000 (-0500) Subject: Revert "Change stylesheet path name for mobile browsers" X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ffcd9fb78d7e43ecefeef6cc9ce52cc834565591;p=friendica.git Revert "Change stylesheet path name for mobile browsers" --- diff --git a/src/Core/Theme.php b/src/Core/Theme.php index 1ea39d606c..91511b4d5f 100644 --- a/src/Core/Theme.php +++ b/src/Core/Theme.php @@ -6,7 +6,6 @@ namespace Friendica\Core; -use Friendica\BaseObject; use Friendica\Core\Logger; use Friendica\Core\System; @@ -192,16 +191,11 @@ class Theme */ public static function getStylesheetPath($theme) { - $a = BaseObject::getApp(); + $a = get_app(); $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : ''); if (file_exists('view/theme/' . $theme . '/style.php')) { - if ($a->is_mobile) { - // Workaround for iOS Safari not sending the cookie for static files - return 'view/theme/' . $theme . '/style' . $opts; - } else { - return 'view/theme/' . $theme . '/style.pcss' . $opts; - } + return 'view/theme/' . $theme . '/style.pcss' . $opts; } return 'view/theme/' . $theme . '/style.css';