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:
mensonge 2009-02-09 14:28:46 +00:00
parent 3a5dafcdc4
commit a98e5ff889
3 changed files with 3 additions and 3 deletions

View file

@ -145,7 +145,7 @@ h2 {
background: #666 url('images/bg_bar.png') center center repeat-x; background: #666 url('images/bg_bar.png') center center repeat-x;
border-bottom: 3px solid #DDD; border-bottom: 3px solid #DDD;
clear: both; clear: both;
color: #DDD; color: #FFF;
font-size: medium; font-size: medium;
letter-spacing: 0.1em; letter-spacing: 0.1em;
margin: 0 0 1em 0; margin: 0 0 1em 0;

View file

@ -48,7 +48,7 @@ class TagService {
function updateDescription($tag, $uId, $desc) { function updateDescription($tag, $uId, $desc) {
$objectTag = $this->getDescription($tag, $uId); $objectTag = $this->getDescription($tag, $uId);
if(count($objectTag)>0 && $objectTag['tDescription'] != '') { if(count($objectTag)>0 ) {
$query = 'UPDATE '.$this->getTableName(); $query = 'UPDATE '.$this->getTableName();
$query.= ' SET tDescription="'.$this->db->sql_escape($desc).'"'; $query.= ' SET tDescription="'.$this->db->sql_escape($desc).'"';
$query.= ' WHERE tag="'.$tag.'" AND uId="'.$uId.'"'; $query.= ' WHERE tag="'.$tag.'" AND uId="'.$uId.'"';

View file

@ -159,7 +159,7 @@ if($currenttag!= '') {
} }
// Last update // 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 // User attribution
$copy = ' '. T_('by'). ' '; $copy = ' '. T_('by'). ' ';