mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
Add missing sanitization for HTML exporting of bookmarks.
This commit is contained in:
@@ -1151,7 +1151,7 @@ BookmarkExporter.prototype = {
|
||||
if (aItem.charset)
|
||||
this._writeAttribute("LAST_CHARSET", escapeHtmlEntities(aItem.charset));
|
||||
if (aItem.tags)
|
||||
this._writeAttribute("TAGS", aItem.tags);
|
||||
this._writeAttribute("TAGS", escapeHtmlEntities(aItem.tags));
|
||||
this._writeLine(">" + escapeHtmlEntities(aItem.title) + "</A>");
|
||||
this._writeDescription(aItem, aIndent);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user