X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fhome.php;h=3490c4faea52dad7712e933d0d484aa05e3ba17f;hb=74d813042fa96dd90955cc5c0da8cf4716485cb8;hp=bd77a840d0db221cca2c04043c2f2719e95f8814;hpb=86cae070f2a048e553c545caec54be72c1c14da5;p=friendica.git diff --git a/mod/home.php b/mod/home.php index bd77a840d0..3490c4faea 100644 --- a/mod/home.php +++ b/mod/home.php @@ -1,6 +1,7 @@ user['nickname'])) { - goaway(App::get_baseurl()."/network"); + goaway(System::baseUrl()."/network"); } if (strlen(get_config('system','singleuser'))) { - goaway(App::get_baseurl()."/profile/" . get_config('system','singleuser')); + goaway(System::baseUrl()."/profile/" . get_config('system','singleuser')); } }} @@ -33,7 +34,7 @@ function home_content(App $a) { /// @TODO No absolute path used, maybe risky (security) if (file_exists('home.html')) { if (file_exists('home.css')) { - $a->page['htmlhead'] .= ''; + $a->page['htmlhead'] .= ''; } $o .= file_get_contents('home.html');