Bug 500832: commas are replaced with spaces when adding tags to bookmarks, r=bcombee

This commit is contained in:
Mark Finkle 2009-07-07 09:45:01 -04:00
Родитель f83d9069af
Коммит 1d299e8904
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -664,7 +664,7 @@ var BookmarkHelper = {
this._editor.setAttribute("ui", "manage");
this._editor.setAttribute("title", title);
this._editor.setAttribute("uri", aURI.spec);
this._editor.setAttribute("tags", tags.join(" "));
this._editor.setAttribute("tags", tags.join(", "));
this._editor.setAttribute("onmove", "FolderPicker.show(this);");
this._editor.setAttribute("onclose", "BookmarkHelper.close()");
document.getElementById("bookmark-form").appendChild(this._editor);