]> git.mxchange.org Git - friendica.git/blobdiff - mod/manifest.php
moving boot::check_addons to Friendica\Core\Addon::check
[friendica.git] / mod / manifest.php
index 90fd7174132b79bbbdffe41f405367cbdd38d583..a651f51662a923d5a55d90cdd1c51002ef01ac5c 100644 (file)
@@ -15,11 +15,11 @@ function manifest_content(App $a) {
                $touch_icon = 'images/friendica-128.png';
        }
 
-       $o = replace_macros($tpl, array(
-               '$baseurl' => App::get_baseurl(),
+       $o = replace_macros($tpl, [
+               '$baseurl' => System::baseUrl(),
                '$touch_icon' => $touch_icon,
                '$title' => Config::get('config', 'sitename', 'Friendica'),
-       ));
+       ]);
 
        echo $o;