Bug fix: add ',' between tags

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@111 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2008-04-18 07:03:24 +00:00
parent 2889c87835
commit e988063750

View file

@ -43,7 +43,7 @@ foreach($bookmarks['bookmarks'] as $row) {
$taglist = ''; $taglist = '';
if (count($row['tags']) > 0) { if (count($row['tags']) > 0) {
foreach($row['tags'] as $tag) foreach($row['tags'] as $tag)
$taglist .= convertTag($tag) .' '; $taglist .= convertTag($tag) .',';
$taglist = substr($taglist, 0, -1); $taglist = substr($taglist, 0, -1);
} else { } else {
$taglist = 'system:unfiled'; $taglist = 'system:unfiled';