]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
Interface fix: put the + after the tag into 'related tags' box
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 9 Feb 2009 10:31:12 +0000 (10:31 +0000)
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 9 Feb 2009 10:31:12 +0000 (10:31 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@256 b3834d28-1941-0410-a4f8-b48e95affb8f

templates/sidebar.block.related.php

index 31c817ac98a0078aa96e17aa8242a1652a3214a2..ccb59b3874c18f543c250e00523205274ef878d7 100644 (file)
@@ -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>