diff options
Diffstat (limited to 'mod/home.php')
-rw-r--r-- | mod/home.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/home.php b/mod/home.php index 05626dcb5..6f7a0b5d7 100644 --- a/mod/home.php +++ b/mod/home.php @@ -12,9 +12,11 @@ function home_init(&$a) { $channel = $a->get_channel(); if(local_user() && $channel && $channel['xchan_url']) { - $dest = get_pconfig(local_user(),'system','startpage'); + $dest = $channel['channel_startpage']; if(! $dest) - $dest = z_root() . '/network'; + $dest = get_pconfig(local_user(),'system','startpage'); + if(! $dest) + $dest = z_root() . '/apps'; goaway($dest); } @@ -74,6 +76,7 @@ function home_content(&$a) { if(get_config('system','projecthome')) { $o .= file_get_contents('assets/home.html'); $a->page['template'] = 'full'; + $a->page['title'] = t('Red Matrix - "The Network"'); return $o; } |