Merge pull request #6380 from MrPetovan/bug/5148-get-cookies-from-safari
authorMichael Vogel <icarus@dabo.de>
Sun, 6 Jan 2019 19:37:33 +0000 (20:37 +0100)
committerGitHub <noreply@github.com>
Sun, 6 Jan 2019 19:37:33 +0000 (20:37 +0100)
Change stylesheet path name for mobile browsers

src/Core/Theme.php

index 1524c29..73fba22 100644 (file)
@@ -6,6 +6,7 @@
 
 namespace Friendica\Core;
 
+use Friendica\BaseObject;
 use Friendica\Core\Logger;
 use Friendica\Core\System;
 
@@ -191,11 +192,16 @@ class Theme
         */
        public static function getStylesheetPath($theme)
        {
-               $a = get_app();
+               $a = BaseObject::getApp();
 
                $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
                if (file_exists('view/theme/' . $theme . '/style.php')) {
-                       return 'view/theme/' . $theme . '/style.pcss' . $opts;
+                       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.css';