Make the network page the new default page after login.

This commit is contained in:
Michael Vogel 2014-08-25 23:34:29 +02:00
parent 316f0a75cd
commit 69bb3ff637
1 changed files with 11 additions and 10 deletions

View File

@ -7,10 +7,11 @@ function home_init(&$a) {
call_hooks('home_init',$ret); call_hooks('home_init',$ret);
if(local_user() && ($a->user['nickname'])) 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'))) 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.html')){
if(file_exists('home.css')){ if(file_exists('home.css')){
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/home.css' . '" media="all" />';} $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->get_baseurl().'/home.css'.'" media="all" />';}
$o .= file_get_contents('home.html');} $o .= file_get_contents('home.html');}
else $o .= '<h1>' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '</h1>'; else $o .= '<h1>'.((x($a->config,'sitename')) ? sprintf(t("Welcome to %s"), $a->config['sitename']) : "").'</h1>';
$o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1);
call_hooks("home_content",$o); call_hooks("home_content",$o);
return $o; return $o;
}} }}