summaryrefslogtreecommitdiffstatshomepage
path: root/services/bookmark2tagservice.php
diff options
context:
space:
mode:
authorGravatar mensonge2008-11-27 10:13:29 +0000
committerGravatar mensonge2008-11-27 10:13:29 +0000
commited4760018fe8a60ab89e4bab58fde04faa4ccd0e (patch)
treecd55f19f1be08def278488f5d661111359b38346 /services/bookmark2tagservice.php
parent1958ddd8e1e74ef00849c78782656c0ba2995f07 (diff)
downloadscuttle-ed4760018fe8a60ab89e4bab58fde04faa4ccd0e.tar.gz
scuttle-ed4760018fe8a60ab89e4bab58fde04faa4ccd0e.zip
Minor fix: improve import from Netscape files (now takes description into account)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@177 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'services/bookmark2tagservice.php')
-rw-r--r--services/bookmark2tagservice.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/bookmark2tagservice.php b/services/bookmark2tagservice.php
index 26a05c1..347df9c 100644
--- a/services/bookmark2tagservice.php
+++ b/services/bookmark2tagservice.php
@@ -42,7 +42,7 @@ class Bookmark2TagService {
}
//clean tags from strange characters
- $tags = str_replace(array('"', '\''), "_", $tags);
+ $tags = str_replace(array('"', '\'', '/'), "_", $tags);
$tags_count = is_array($tags)?count($tags):0;