X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=0320c1b3988a5b20bd2cda7fc02bf443de78a120;hb=e25fb2b2f9a822fa7180448ddff7f558dfc34fee;hp=d89b47bc20dc7eb9c7da68de61975fdae021d562;hpb=2370a3f89b5f10e6c98edf019fe25d98eb58d401;p=friendica.git diff --git a/mod/home.php b/mod/home.php old mode 100644 new mode 100755 index d89b47bc20..0320c1b398 --- a/mod/home.php +++ b/mod/home.php @@ -3,23 +3,35 @@ if(! function_exists('home_init')) { function home_init(&$a) { - if(x($_SESSION,'authenticated') && (x($_SESSION,'uid'))) { - if($a->user['nickname']) - goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); - else - goaway( $a->get_baseurl() . "/profile/" . $_SESSION['uid'] ); - } - $a->page['htmlhead'] .= "get_baseurl() . "/profile/%s" . "\" />\r\n"; - + $ret = array(); + call_hooks('home_init',$ret); + + if(local_user() && ($a->user['nickname'])) + goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); + + if(strlen(get_config('system','singleuser'))) + goaway( $a->get_baseurl() . "/profile/" . get_config('system','singleuser')); + }} if(! function_exists('home_content')) { function home_content(&$a) { - $a->page['footer'] .= "
Powered by mistpark
"; - $o .= '

Welcome' . ((x($a->config,'sitename')) ? " to {$a->config['sitename']}" : "" ) . '

'; + + $o = ''; + + if(x($_SESSION,'theme')) + unset($_SESSION['theme']); + + $o .= '

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

'; + if(file_exists('home.html')) + $o .= file_get_contents('home.html'); + $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); + + call_hooks("home_content",$o); + return $o; -}} \ No newline at end of file +}}