mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
Add missing sanitization for HTML exporting of bookmarks.
This commit is contained in:
parent
b1ed995cb1
commit
39acad1d90
1 changed files with 1 additions and 1 deletions
|
|
@ -1145,7 +1145,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);
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue