diff options
author | friendica <info@friendica.com> | 2012-10-22 20:14:32 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-22 20:14:32 -0700 |
commit | 19c8a277bb3075fb635bfe08f1771237dc541cf5 (patch) | |
tree | f99dfb26f537c8fd8da27f11c1a2089944074ee2 /mod/home.php | |
parent | 81a1b08927c5da0570d690b3af7990b08d56bbf5 (diff) | |
download | volse-hubzilla-19c8a277bb3075fb635bfe08f1771237dc541cf5.tar.gz volse-hubzilla-19c8a277bb3075fb635bfe08f1771237dc541cf5.tar.bz2 volse-hubzilla-19c8a277bb3075fb635bfe08f1771237dc541cf5.zip |
send home redirection to xchan_profile instead of channel_profile
Diffstat (limited to 'mod/home.php')
-rw-r--r-- | mod/home.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/home.php b/mod/home.php index 51e95f25b..bd045c3cb 100644 --- a/mod/home.php +++ b/mod/home.php @@ -8,8 +8,8 @@ function home_init(&$a) { $channel = $a->get_channel(); - if(local_user() && $channel && $channel['channel_profile']) - goaway( $channel['channel_profile']); + if(local_user() && $channel && $channel['xchan_profile']) + goaway( $channel['xchan_profile']); }} |