diff options
| -rw-r--r-- | templates/sidebar.block.related.php | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/templates/sidebar.block.related.php b/templates/sidebar.block.related.php index 31c817a..ccb59b3 100644 --- a/templates/sidebar.block.related.php +++ b/templates/sidebar.block.related.php @@ -27,9 +27,8 @@ if ($currenttag) {  <div id="related">      <table>      <?php foreach($relatedTags as $row): ?> -    <tr> -        <td><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($currenttag, 'url') .'+'. filter($row['tag'], 'url')); ?>">+</a></td> -        <td><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($row['tag'], 'url')); ?>" rel="tag"><?php echo filter($row['tag']); ?></a></td> +    <tr>         +        <td><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($row['tag'], 'url')); ?>" rel="tag"><?php echo filter($row['tag']); ?></a> <b><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($currenttag, 'url') .'+'. filter($row['tag'], 'url')); ?>" title="<?php echo T_('Add this tag to the query') ?>">+</a></b></td>            </tr>      <?php endforeach; ?>      </table>  | 
