aboutsummaryrefslogtreecommitdiffstats
path: root/mod/channel.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-07-02 21:46:01 -0700
committerfriendica <info@friendica.com>2013-07-02 21:46:01 -0700
commit15ae313595f61424c7b8039dee6d332f5aef88c5 (patch)
tree081b79702911871a4ea59fe484e378c8f18b5df7 /mod/channel.php
parent50c70a3ef2bc56aa039f42f4d01f636bda5cebb0 (diff)
downloadvolse-hubzilla-15ae313595f61424c7b8039dee6d332f5aef88c5.tar.gz
volse-hubzilla-15ae313595f61424c7b8039dee6d332f5aef88c5.tar.bz2
volse-hubzilla-15ae313595f61424c7b8039dee6d332f5aef88c5.zip
This probably needs some configurable options, but let's only show tags from your top-level posts in your personal tag cloud to prevent your commenters from tag spamming you and featuring their tags on your wall. It would be bad if somebody was able to make #penis_enlargement *your* personal top tag. We can do something different for the matrix, as it can't be seen by outsiders.
Diffstat (limited to 'mod/channel.php')
-rw-r--r--mod/channel.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/channel.php b/mod/channel.php
index 861708075..5d4c7ce1b 100644
--- a/mod/channel.php
+++ b/mod/channel.php
@@ -48,7 +48,7 @@ function channel_aside(&$a) {
$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,ITEM_WALL));
+ $a->set_widget('tagcloud',tagblock('search',$a->profile['profile_uid'],50,ITEM_WALL|ITEM_THREAD_TOP));
}