diff options
author | friendica <info@friendica.com> | 2013-09-19 21:13:45 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-19 21:13:45 -0700 |
commit | 876a9d1850ec6fc2aa26f530e8ab554028158734 (patch) | |
tree | 3af262fda254f768eb378541da74dc4cf1852243 /include/taxonomy.php | |
parent | 82bd1420cc264a985c1f201826b6bface70dec12 (diff) | |
download | volse-hubzilla-876a9d1850ec6fc2aa26f530e8ab554028158734.tar.gz volse-hubzilla-876a9d1850ec6fc2aa26f530e8ab554028158734.tar.bz2 volse-hubzilla-876a9d1850ec6fc2aa26f530e8ab554028158734.zip |
missing hash
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r-- | include/taxonomy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php index a3c3fc7b4..85396a51d 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=&keywords=' . urlencode($rr['term']).'" class="tag'.$rr['normalise'].'">'.$rr['term'].'</a> ' . "\r\n"; + $o .= '<a href="'.$link .'/' . '?f=&keywords=' . urlencode($rr['term']).'" class="tag'.$rr['normalise'].'" rel="nofollow" >'.$rr['term'].'</a> ' . "\r\n"; } $o .= '</div></div>'; } |