X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=3490c4faea52dad7712e933d0d484aa05e3ba17f;hb=74d813042fa96dd90955cc5c0da8cf4716485cb8;hp=76318b157ca0dc7ad93e0190b1dfefe27efb2fb4;hpb=190ab46e18ec161a161fbeef01f412ae093b283f;p=friendica.git diff --git a/mod/home.php b/mod/home.php index 76318b157c..3490c4faea 100644 --- a/mod/home.php +++ b/mod/home.php @@ -1,40 +1,52 @@ user['nickname'])) - goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); + if (local_user() && ($a->user['nickname'])) { + goaway(System::baseUrl()."/network"); + } - if(strlen(get_config('system','singleuser'))) - goaway( $a->get_baseurl() . "/profile/" . get_config('system','singleuser')); + if (strlen(get_config('system','singleuser'))) { + goaway(System::baseUrl()."/profile/" . get_config('system','singleuser')); + } }} - if(! function_exists('home_content')) { -function home_content(&$a) { +function home_content(App $a) { $o = ''; - if(x($_SESSION,'theme')) + if (x($_SESSION,'theme')) { unset($_SESSION['theme']); - if(x($_SESSION,'mobile-theme')) + } + if (x($_SESSION,'mobile-theme')) { unset($_SESSION['mobile-theme']); + } + + /// @TODO No absolute path used, maybe risky (security) + if (file_exists('home.html')) { + if (file_exists('home.css')) { + $a->page['htmlhead'] .= ''; + } - if(file_exists('home.html')) - $o .= file_get_contents('home.html'); - else $o .= '

' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '

'; + $o .= file_get_contents('home.html'); + } else { + $o .= '

'.((x($a->config,'sitename')) ? sprintf(t("Welcome to %s"), $a->config['sitename']) : "").'

'; + } $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); - + call_hooks("home_content",$o); - + return $o; - -}} +}}