X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=cdf4b371588900a95938fecfb0dfd306ad3718a1;hb=e5a6d91cc4dc8f8546580c656ed6acc7016d4a28;hp=f703263a2c6a532831bcfc5431c1e944e53ee0ae;hpb=972060a8ff7244b1babbf3a006717441f67d1ccf;p=friendica.git diff --git a/mod/home.php b/mod/home.php index f703263a2c..cdf4b37158 100644 --- a/mod/home.php +++ b/mod/home.php @@ -7,10 +7,11 @@ function home_init(&$a) { call_hooks('home_init',$ret); if(local_user() && ($a->user['nickname'])) - goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); + goaway($a->get_baseurl()."/network"); + //goaway($a->get_baseurl()."/profile/".$a->user['nickname']); if(strlen(get_config('system','singleuser'))) - goaway( $a->get_baseurl() . "/profile/" . get_config('system','singleuser')); + goaway($a->get_baseurl()."/profile/" . get_config('system','singleuser')); }} @@ -27,18 +28,18 @@ function home_content(&$a) { if(file_exists('home.html')){ if(file_exists('home.css')){ - $a->page['htmlhead'] .= '';} - + $a->page['htmlhead'] .= '';} + $o .= file_get_contents('home.html');} - - else $o .= '

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

'; + + 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; - -}} + +}}