Interface fix: improve subtitle display.
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@264 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
3a5dafcdc4
commit
a98e5ff889
3 changed files with 3 additions and 3 deletions
|
@ -145,7 +145,7 @@ h2 {
|
|||
background: #666 url('images/bg_bar.png') center center repeat-x;
|
||||
border-bottom: 3px solid #DDD;
|
||||
clear: both;
|
||||
color: #DDD;
|
||||
color: #FFF;
|
||||
font-size: medium;
|
||||
letter-spacing: 0.1em;
|
||||
margin: 0 0 1em 0;
|
||||
|
|
|
@ -48,7 +48,7 @@ class TagService {
|
|||
|
||||
function updateDescription($tag, $uId, $desc) {
|
||||
$objectTag = $this->getDescription($tag, $uId);
|
||||
if(count($objectTag)>0 && $objectTag['tDescription'] != '') {
|
||||
if(count($objectTag)>0 ) {
|
||||
$query = 'UPDATE '.$this->getTableName();
|
||||
$query.= ' SET tDescription="'.$this->db->sql_escape($desc).'"';
|
||||
$query.= ' WHERE tag="'.$tag.'" AND uId="'.$uId.'"';
|
||||
|
|
|
@ -159,7 +159,7 @@ if($currenttag!= '') {
|
|||
}
|
||||
|
||||
// Last update
|
||||
$update = ' <small>('. T_('update') .' '. date($GLOBALS['shortdate'], strtotime($row['bModified'])). ') </small>';
|
||||
$update = ' <small title="'. T_('Last update') .'">('. date($GLOBALS['shortdate'], strtotime($row['bModified'])). ') </small>';
|
||||
|
||||
// User attribution
|
||||
$copy = ' '. T_('by'). ' ';
|
||||
|
|
Loading…
Reference in a new issue