aboutsummaryrefslogtreecommitdiffstats
path: root/include/taxonomy.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-18 17:47:26 -0700
committerfriendica <info@friendica.com>2013-09-18 17:47:26 -0700
commite4d2e2200e04c8df699d9a8efade661123ef7ac8 (patch)
treeeb97cdeb19f72ef9dbddf5074510bf9f82f50632 /include/taxonomy.php
parente06b4c6dfc0b3419f35dd8d42770d1c983523830 (diff)
downloadvolse-hubzilla-e4d2e2200e04c8df699d9a8efade661123ef7ac8.tar.gz
volse-hubzilla-e4d2e2200e04c8df699d9a8efade661123ef7ac8.tar.bz2
volse-hubzilla-e4d2e2200e04c8df699d9a8efade661123ef7ac8.zip
add "tiered" access policy, add tagcloud to directory pages
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 30eb08f65..a3c3fc7b4 100644
--- a/include/taxonomy.php
+++ b/include/taxonomy.php
@@ -221,7 +221,7 @@ function dir_tagblock($link,$r) {
if($r) {
$o = '<div class="dirtagblock widget"><h3>' . t('Keywords') . '</h3><div class="tags" align="center">';
foreach($r as $rr) {
- $o .= '<a href="'.$link .'/' . '?f=&keyword=' . urlencode($rr['term']).'" class="tag'.$rr['weight'].'">'.$rr['term'].'</a> ' . "\r\n";
+ $o .= '<a href="'.$link .'/' . '?f=&keywords=' . urlencode($rr['term']).'" class="tag'.$rr['normalise'].'">'.$rr['term'].'</a> ' . "\r\n";
}
$o .= '</div></div>';
}