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:
parent
99d688529e
commit
d10c26fd1d
1 changed files with 11 additions and 8 deletions
|
@ -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>
|
<h2>
|
||||||
<?php
|
<?php
|
||||||
echo T_('Linked Tags').' ';
|
echo T_('Linked Tags').' ';
|
||||||
|
@ -109,18 +119,11 @@ if ($currenttag) {
|
||||||
//}
|
//}
|
||||||
?>
|
?>
|
||||||
</h2>
|
</h2>
|
||||||
|
<?php //endif?>
|
||||||
<?php if(count($explodedTags)>0):?>
|
|
||||||
|
|
||||||
<div id="linked">
|
<div id="linked">
|
||||||
<table>
|
<table>
|
||||||
<?php
|
<?php
|
||||||
if(($logged_on_userid != null) && ($userid === $logged_on_userid)) {
|
|
||||||
$editingMode = true;
|
|
||||||
} else {
|
|
||||||
$editingMode = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if($editingMode) {
|
if($editingMode) {
|
||||||
echo '<tr><td></td><td>';
|
echo '<tr><td></td><td>';
|
||||||
echo ' (<a href="'. createURL('tag2tagadd','') .'" rel="tag">'.T_('Add new link').'</a>) ';
|
echo ' (<a href="'. createURL('tag2tagadd','') .'" rel="tag">'.T_('Add new link').'</a>) ';
|
||||||
|
|
Loading…
Reference in a new issue