]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Theme.php
Move redundant System::baseUrl() to DI::baseUrl() calls
[friendica.git] / src / Core / Theme.php
index dea3e20e647b2ed0740a6535d135c2b80863b2b3..6f0d9d43603a54e683ffbf7f3b6fb1b053069d19 100644 (file)
@@ -73,10 +73,9 @@ class Theme
                        return $info;
                }
 
-               $a = \get_app();
                $stamp1 = microtime(true);
                $theme_file = file_get_contents("view/theme/$theme/theme.php");
-               $a->getProfiler()->saveTimestamp($stamp1, "file", System::callstack());
+               DI::profiler()->saveTimestamp($stamp1, "file", System::callstack());
 
                $result = preg_match("|/\*.*\*/|msU", $theme_file, $matches);
 
@@ -126,10 +125,10 @@ class Theme
                $exts = ['.png', '.jpg'];
                foreach ($exts as $ext) {
                        if (file_exists('view/theme/' . $theme . '/screenshot' . $ext)) {
-                               return System::baseUrl() . '/view/theme/' . $theme . '/screenshot' . $ext;
+                               return DI::baseUrl() . '/view/theme/' . $theme . '/screenshot' . $ext;
                        }
                }
-               return System::baseUrl() . '/images/blank.png';
+               return DI::baseUrl() . '/images/blank.png';
        }
 
        public static function uninstall($theme)