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
This commit is contained in:
parent
98d89c7e1b
commit
1dd434dfb0
1 changed files with 2 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue