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,7 +7,8 @@ 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'));