aboutsummaryrefslogtreecommitdiffstats
path: root/include/taxonomy.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-11-06 01:32:47 -0800
committerfriendica <info@friendica.com>2014-11-06 01:32:47 -0800
commita23435540ef097eb6e718129004d259a5313ef6b (patch)
tree6704a37d35cca31eb2243e2f66e0ffeece11341c /include/taxonomy.php
parent4057e82bb46e7f30e8bccfb076be85ac9f91f256 (diff)
downloadvolse-hubzilla-a23435540ef097eb6e718129004d259a5313ef6b.tar.gz
volse-hubzilla-a23435540ef097eb6e718129004d259a5313ef6b.tar.bz2
volse-hubzilla-a23435540ef097eb6e718129004d259a5313ef6b.zip
make sure the "tagcloud" actually shows hashtags. So we don't confuse folks with categories.
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r--include/taxonomy.php2
1 files changed, 1 insertions, 1 deletions
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 = '<div class="tagblock widget"><h3>' . t('Tags') . '</h3><div class="tags" align="center">';
foreach($r as $rr) {
- $o .= '<a href="'.$link .'/' . '?f=&tag=' . urlencode($rr[0]).'" class="tag'.$rr[2].'">'.$rr[0].'</a> ' . "\r\n";
+ $o .= '<span class="tag'.$rr[2].'">#</span><a href="'.$link .'/' . '?f=&tag=' . urlencode($rr[0]).'" class="tag'.$rr[2].'">'.$rr[0].'</a> ' . "\r\n";
}
$o .= '</div></div>';
}