From 15ae313595f61424c7b8039dee6d332f5aef88c5 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 2 Jul 2013 21:46:01 -0700 Subject: [PATCH] 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. --- mod/channel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }