X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=3490c4faea52dad7712e933d0d484aa05e3ba17f;hb=10ede7314136edb1c475e1af546a59ff4c5648cf;hp=b1708d80a2f02e36fe78b650841581508323a316;hpb=63e2695d226d195c6a97e1045d6b174591dd2487;p=friendica.git diff --git a/mod/home.php b/mod/home.php index b1708d80a2..3490c4faea 100644 --- a/mod/home.php +++ b/mod/home.php @@ -1,5 +1,8 @@ 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')); } }} @@ -31,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');