diff options
author | friendica <info@friendica.com> | 2013-12-10 20:36:11 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-10 20:36:11 -0800 |
commit | e5ea4a009b81c7f3fa987ba34d20a996055775d6 (patch) | |
tree | 3c5a659f1d45ddb4e3d6228ba8161f7133df4873 /mod/channel.php | |
parent | 6e4f9b7ecc42b7196a41c32d1f2a68e4e029ee04 (diff) | |
download | volse-hubzilla-e5ea4a009b81c7f3fa987ba34d20a996055775d6.tar.gz volse-hubzilla-e5ea4a009b81c7f3fa987ba34d20a996055775d6.tar.bz2 volse-hubzilla-e5ea4a009b81c7f3fa987ba34d20a996055775d6.zip |
mod channel is now Comanchified
Diffstat (limited to 'mod/channel.php')
-rw-r--r-- | mod/channel.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/mod/channel.php b/mod/channel.php index 7879f72ee..149936dd7 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -43,30 +43,6 @@ function channel_init(&$a) { } - -function channel_aside(&$a) { - - - if(! $a->profile['profile_uid']) - return; - - $channel_display = get_pconfig($a->profile['profile_uid'],'system','channel_format'); - if(! $channel_display) - profile_create_sidebar($a); - - if($channel_display === 'full') - $a->page['template'] = 'full'; - else { - $cat = ((x($_REQUEST,'cat')) ? htmlspecialchars($_REQUEST['cat']) : ''); - $a->set_widget('archive',posted_date_widget($a->get_baseurl(true) . '/channel/' . $a->profile['channel_address'],$a->profile['profile_uid'],true)); - $a->set_widget('categories',categories_widget($a->get_baseurl(true) . '/channel/' . $a->profile['channel_address'],$cat)); - } - if(feature_enabled($a->profile['profile_uid'],'tagadelic')) - $a->set_widget('tagcloud',tagblock('search',$a->profile['profile_uid'],50,$a->profile['channel_hash'],ITEM_WALL)); - -} - - function channel_content(&$a, $update = 0, $load = false) { $category = $datequery = $datequery2 = ''; |