diff options
Diffstat (limited to 'mod/home.php')
-rw-r--r-- | mod/home.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mod/home.php b/mod/home.php index 1bb0148d2..0ded90d6f 100644 --- a/mod/home.php +++ b/mod/home.php @@ -8,8 +8,12 @@ function home_init(&$a) { $channel = $a->get_channel(); - if(local_user() && $channel && $channel['xchan_url']) - goaway( $channel['xchan_url']); + if(local_user() && $channel && $channel['xchan_url']) { + $dest = get_pconfig(local_user(),'system','startpage'); + if(! $dest) + $dest = z_root() . '/network'; + goaway($dest); + } if(get_account_id()) { goaway('new_channel'); |