Permalink
Browse files

Fixed Bookmarks.js HTML character references in title. (#1496)

As discussed here: zotero#1485
  • Loading branch information...
ckush authored and zuphilip committed Dec 15, 2017
1 parent 8c58a9e commit ce38a083bd6a8f6e5eef0a5c6a0394de5e79ee9f
Showing with 2 additions and 2 deletions.
  1. +2 −2 Bookmarks.js
View
@@ -9,7 +9,7 @@
"inRepository": true,
"translatorType": 3,
"browserSupport": "gcsibv",
"lastUpdated": "2017-06-03 11:41:00"
"lastUpdated": "2017-12-17 17:43:00"
}
/*
@@ -126,7 +126,7 @@ function doImport() {
}
openItem = new Zotero.Item("webpage");
openItem.title = title;
openItem.title = ZU.unescapeHTML(title);
openItem.itemID = openItem.id = itemID++;
if(collection) collection.children.push(openItem);

0 comments on commit ce38a08

Please sign in to comment.