diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-09-11 14:10:58 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-09-11 14:10:58 +0000 |
commit | 0858ba7f72c5cf5626898b81429b2f88911b9dfb (patch) | |
tree | 2d6ccf13e511323c93e9be8b57fca6821f4ad16b /services | |
parent | c8a27226eef8e7e492450e39ae972e1ec11ee410 (diff) | |
download | semanticscuttle-0858ba7f72c5cf5626898b81429b2f88911b9dfb.tar.gz semanticscuttle-0858ba7f72c5cf5626898b81429b2f88911b9dfb.tar.bz2 |
Bug fix: renametag function corrected (thank you Andreas)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@144 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'services')
-rw-r--r-- | services/tagservice.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/tagservice.php b/services/tagservice.php index fbb7fa3..47f82d6 100644 --- a/services/tagservice.php +++ b/services/tagservice.php @@ -72,6 +72,7 @@ class TagService { $query.= ' WHERE tag="'.$oldName.'"'; $query.= ' AND uId="'.$uId.'"'; $this->db->sql_query($query); + return true; } |