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:
parent
acf7ac0415
commit
f324c988a5
1 changed files with 5 additions and 1 deletions
|
@ -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 = '';
|
||||
|
|
Loading…
Reference in a new issue