aboutsummaryrefslogtreecommitdiff
path: root/services/bookmark2tagservice.php
diff options
context:
space:
mode:
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;