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:
parent
2889c87835
commit
e988063750
1 changed files with 1 additions and 1 deletions
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue