Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #475 from darkwing/tags-spaces-776978
Browse files Browse the repository at this point in the history
fix bug 776978 - Quote all tags to avoid space issues
  • Loading branch information
groovecoder committed Aug 1, 2012
2 parents 7c9c39f + 3abc920 commit 306085c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/js/wiki-tags-edit.js
Expand Up @@ -24,7 +24,7 @@
// do nothing -- this is the item being removed
}
else {
itemTexts.push($(this).find(".tagit-label").text());
itemTexts.push('"' + $(this).find(".tagit-label").text() + '"');
}
});
hiddenTags.val(itemTexts.join(","));
Expand Down

0 comments on commit 306085c

Please sign in to comment.