X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=cdf4b371588900a95938fecfb0dfd306ad3718a1;hb=e5a6d91cc4dc8f8546580c656ed6acc7016d4a28;hp=2d646f8dd8a4b09553a9fc365fff80f6e7b301aa;hpb=11a44a107da2951e469976508ae57748fe7dee70;p=friendica.git diff --git a/mod/home.php b/mod/home.php index 2d646f8dd8..cdf4b37158 100644 --- a/mod/home.php +++ b/mod/home.php @@ -3,10 +3,16 @@ if(! function_exists('home_init')) { function home_init(&$a) { + $ret = array(); + 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')); - $a->page['htmlhead'] .= "get_baseurl() . "/profile/%s" . "\" />\r\n"; }} @@ -14,20 +20,26 @@ if(! function_exists('home_content')) { function home_content(&$a) { $o = ''; -/* - * if(! (x($a->page,'footer'))) - * $a->page['footer'] = ''; - * $a->page['footer'] .= "
Powered by friendika
"; - */ - $o .= '

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

'; - if(file_exists('home.html')) - $o .= file_get_contents('home.html'); + + if(x($_SESSION,'theme')) + unset($_SESSION['theme']); + if(x($_SESSION,'mobile-theme')) + unset($_SESSION['mobile-theme']); + + if(file_exists('home.html')){ + if(file_exists('home.css')){ + $a->page['htmlhead'] .= '';} + + $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; - -}} + +}}