aboutsummaryrefslogtreecommitdiff
path: root/services/bookmark2tagservice.php
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-28 06:09:45 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-28 06:09:45 +0000
commite0949aa0adfdfee4f78733277ff43d850ef3582e (patch)
tree49685833ea28c0a6522933520ba526ffdb0cb77f /services/bookmark2tagservice.php
parent96dfa82af5d9fd27b87eeef0ba877b022845e240 (diff)
downloadsemanticscuttle-e0949aa0adfdfee4f78733277ff43d850ef3582e.tar.gz
semanticscuttle-e0949aa0adfdfee4f78733277ff43d850ef3582e.tar.bz2
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/bookmark2tagservice.php')
-rw-r--r--services/bookmark2tagservice.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/bookmark2tagservice.php b/services/bookmark2tagservice.php
index 347df9c..7085d5f 100644
--- a/services/bookmark2tagservice.php
+++ b/services/bookmark2tagservice.php
@@ -41,8 +41,8 @@ class Bookmark2TagService {
}
}
- //clean tags from strange characters
- $tags = str_replace(array('"', '\'', '/'), "_", $tags);
+ $tagservice =& ServiceFactory::getServiceInstance('TagService');
+ $tags = $tagservice->normalize($tags);
$tags_count = is_array($tags)?count($tags):0;