Interface design fix: improve visualisation of structuredtags box

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@84 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2008-03-14 14:24:43 +00:00
parent 99d688529e
commit d10c26fd1d

View file

@ -100,6 +100,16 @@ if ($currenttag) {
?>
<?php
if(($logged_on_userid != null) && ($userid === $logged_on_userid)) {
$editingMode = true;
} else {
$editingMode = false;
}
?>
<?php if(count($explodedTags)>0 || $editingMode):?>
<h2>
<?php
echo T_('Linked Tags').' ';
@ -109,18 +119,11 @@ if ($currenttag) {
//}
?>
</h2>
<?php if(count($explodedTags)>0):?>
<?php //endif?>
<div id="linked">
<table>
<?php
if(($logged_on_userid != null) && ($userid === $logged_on_userid)) {
$editingMode = true;
} else {
$editingMode = false;
}
if($editingMode) {
echo '<tr><td></td><td>';
echo ' (<a href="'. createURL('tag2tagadd','') .'" rel="tag">'.T_('Add new link').'</a>) ';