diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-09 10:31:12 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-09 10:31:12 +0000 |
commit | 1dd434dfb000074e359d184126bdd36d6d158232 (patch) | |
tree | af00f28200da8fa64d11e55fa8e532e594d0e1b6 /templates | |
parent | 98d89c7e1b9b045ba49a7ebca827f7043af0cf23 (diff) | |
download | semanticscuttle-1dd434dfb000074e359d184126bdd36d6d158232.tar.gz semanticscuttle-1dd434dfb000074e359d184126bdd36d6d158232.tar.bz2 |
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')
-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> |