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

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

'; if(file_exists('home.html')) $o .= file_get_contents('home.html');