From a23435540ef097eb6e718129004d259a5313ef6b Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 6 Nov 2014 01:32:47 -0800 Subject: make sure the "tagcloud" actually shows hashtags. So we don't confuse folks with categories. --- include/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/taxonomy.php b/include/taxonomy.php index d683b24a6..fab31c73d 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -209,7 +209,7 @@ function tagblock($link,$uid,$count = 0,$authors = '',$flags = 0,$restrict = 0,$ if($r) { $o = '

' . t('Tags') . '

'; foreach($r as $rr) { - $o .= ''.$rr[0].' ' . "\r\n"; + $o .= '#'.$rr[0].' ' . "\r\n"; } $o .= '
'; } -- cgit v1.2.3