]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
Interface fix: improve subtitle display.
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 9 Feb 2009 14:28:46 +0000 (14:28 +0000)
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 9 Feb 2009 14:28:46 +0000 (14:28 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@264 b3834d28-1941-0410-a4f8-b48e95affb8f

scuttle.css
services/tagservice.php
templates/bookmarks.tpl.php

index 17fe23a1e04284819905d6b25f73240497130697..00f231cfc0e9f08ce012ada0f1db69fa78d27e18 100644 (file)
@@ -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;
index fba85fa0cb66cdc88ec938fcfd3e42d04a06f12d..02f5c2b63d584266b4af1e39fd48e95c4582de07 100644 (file)
@@ -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.'"';
index b0ed3e80f0a96fccea722f672ee9c8880c24b9ec..f7cec7759c09d6c893ee23119f68b65715d304dd 100644 (file)
@@ -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'). ' ';