diff options
author | friendica <info@friendica.com> | 2013-01-24 14:31:57 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-24 14:31:57 -0800 |
commit | 4f7f547190f5ec2557739aad6b2c09e3f45cdc76 (patch) | |
tree | 279db2a4d10442f39a284cdf8894a32f2b05263f /mod/channel.php | |
parent | 5da1948ede2f88736e8689c530d6430d56965056 (diff) | |
download | volse-hubzilla-4f7f547190f5ec2557739aad6b2c09e3f45cdc76.tar.gz volse-hubzilla-4f7f547190f5ec2557739aad6b2c09e3f45cdc76.tar.bz2 volse-hubzilla-4f7f547190f5ec2557739aad6b2c09e3f45cdc76.zip |
why oh why is poco_load not getting called? oh - that's why.
Diffstat (limited to 'mod/channel.php')
-rw-r--r-- | mod/channel.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/mod/channel.php b/mod/channel.php index 4510ad61d..3f92539ae 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -22,6 +22,7 @@ function channel_init(&$a) { // Run profile_load() here to make sure the theme is set before // we start loading content + profile_load($a,$which,$profile); } @@ -81,12 +82,8 @@ function channel_content(&$a, $update = 0, $load = false) { $groups = array(); - - $tab = 'posts'; $o = ''; - - if($update) { // Ensure we've got a profile owner if updating. $a->profile['profile_uid'] = $update; @@ -112,7 +109,6 @@ function channel_content(&$a, $update = 0, $load = false) { if(! $update) { - $o .= profile_tabs($a, $is_owner, $a->profile['channel_address']); $o .= common_friends_visitor_widget($a->profile['profile_uid']); |