From: mensonge Date: Fri, 18 Apr 2008 07:03:24 +0000 (+0000) Subject: Bug fix: add ',' between tags X-Git-Tag: v0.90~49 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e988063750fdc970c36ddf81ee5a32ff0b2592ee;p=semanticscuttle.git Bug fix: add ',' between tags git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@111 b3834d28-1941-0410-a4f8-b48e95affb8f --- diff --git a/api/export_all.php b/api/export_all.php index ec14688..b422b4b 100644 --- a/api/export_all.php +++ b/api/export_all.php @@ -43,7 +43,7 @@ foreach($bookmarks['bookmarks'] as $row) { $taglist = ''; if (count($row['tags']) > 0) { foreach($row['tags'] as $tag) - $taglist .= convertTag($tag) .' '; + $taglist .= convertTag($tag) .','; $taglist = substr($taglist, 0, -1); } else { $taglist = 'system:unfiled';