Bug fix: in structured tag box, remove the link > if use not identified

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@75 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2008-03-12 17:21:57 +00:00
parent acf7ac0415
commit f324c988a5

View file

@ -13,7 +13,11 @@ function displayLinkedTags($tag, $linkType, $uId, $cat_url, $user, $editingMode
// link '>'
if($level>1) {
$link = '<small><a href="'.createURL('tag2tagedit', $precedentTag.'/'.$tag).'" title="'._('Edit link').'">></a> </small>';
if($editingMode) {
$link = '<small><a href="'.createURL('tag2tagedit', $precedentTag.'/'.$tag).'" title="'._('Edit link').'">></a> </small>';
} else {
$link = '> ';
}
}
$output = '';