summaryrefslogtreecommitdiffstatshomepage
path: root/services/tagservice.php
diff options
context:
space:
mode:
authorGravatar mensonge2008-11-28 06:09:45 +0000
committerGravatar mensonge2008-11-28 06:09:45 +0000
commite0949aa0adfdfee4f78733277ff43d850ef3582e (patch)
tree49685833ea28c0a6522933520ba526ffdb0cb77f /services/tagservice.php
parent96dfa82af5d9fd27b87eeef0ba877b022845e240 (diff)
downloadscuttle-e0949aa0adfdfee4f78733277ff43d850ef3582e.tar.gz
scuttle-e0949aa0adfdfee4f78733277ff43d850ef3582e.zip
New Feature: possibility to import a structure of hierarchical tags from a file
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@179 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'services/tagservice.php')
-rw-r--r--services/tagservice.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/services/tagservice.php b/services/tagservice.php
index 83349c6..504d13f 100644
--- a/services/tagservice.php
+++ b/services/tagservice.php
@@ -75,8 +75,13 @@ class TagService {
$this->db->sql_query($query);
return true;
}
-
-
+
+ /* normalize the input tags which could be a string or an array*/
+ function normalize($tags) {
+ //clean tags from strange characters
+ $tags = str_replace(array('"', '\'', '/'), "_", $tags);
+ return $tags;
+ }
function deleteAll() {
$query = 'TRUNCATE TABLE `'. $this->getTableName() .'`';