summaryrefslogtreecommitdiffstatshomepage
path: root/templates/sidebar.block.related.php
diff options
context:
space:
mode:
authorGravatar mensonge2009-02-09 10:31:12 +0000
committerGravatar mensonge2009-02-09 10:31:12 +0000
commit1dd434dfb000074e359d184126bdd36d6d158232 (patch)
treeaf00f28200da8fa64d11e55fa8e532e594d0e1b6 /templates/sidebar.block.related.php
parent98d89c7e1b9b045ba49a7ebca827f7043af0cf23 (diff)
downloadscuttle-1dd434dfb000074e359d184126bdd36d6d158232.tar.gz
scuttle-1dd434dfb000074e359d184126bdd36d6d158232.zip
Interface fix: put the + after the tag into 'related tags' box
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@256 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/sidebar.block.related.php')
-rw-r--r--templates/sidebar.block.related.php5
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>