summaryrefslogtreecommitdiffstatshomepage
path: root/templates/sidebar.block.tagactions.php
diff options
context:
space:
mode:
authorGravatar mensonge2008-04-21 15:43:00 +0000
committerGravatar mensonge2008-04-21 15:43:00 +0000
commit3b79d6b9cc75eaf2b54f6d41843a313b13395c8d (patch)
treeccacf4d7d95197c700c25b28abc469a50706616f /templates/sidebar.block.tagactions.php
parent4de56ed6623c57c1c767be192ffe2af5926fe598 (diff)
downloadscuttle-3b79d6b9cc75eaf2b54f6d41843a313b13395c8d.tar.gz
scuttle-3b79d6b9cc75eaf2b54f6d41843a313b13395c8d.zip
New feature: private descriptions for tags
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@117 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/sidebar.block.tagactions.php')
-rw-r--r--templates/sidebar.block.tagactions.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/sidebar.block.tagactions.php b/templates/sidebar.block.tagactions.php
index 43d4922..fd13d98 100644
--- a/templates/sidebar.block.tagactions.php
+++ b/templates/sidebar.block.tagactions.php
@@ -10,6 +10,7 @@ if ($userservice->isLoggedOn()) {
$renametext = T_ngettext('Rename Tag', 'Rename Tags', count($tags));
$renamelink = createURL('tagrename', $currenttag);
$deletelink = createURL('tagdelete', $currenttag);
+ $tagdesclink = createURL('tagedit', $currenttag);
$commondesclink = createURL('tagcommondescriptionedit', $currenttag);
$addtag2taglinklink = createURL('tag2tagadd', $currenttag);
?>
@@ -21,6 +22,7 @@ if ($userservice->isLoggedOn()) {
<?php if (count($tags) == 1): ?>
<li><a href="<?php echo $deletelink; ?>"><?php echo T_('Delete Tag') ?></a></li>
<?php endif; ?>
+ <li><a href="<?php echo $tagdesclink; ?>"><?php echo T_('Edit Tag Description') ?></a></li>
<?php if ($GLOBALS['enableCommonTagDescription']): ?>
<li><a href="<?php echo $commondesclink; ?>"><?php echo T_('Edit Tag Common Description') ?></a></li>
<?php endif; ?>