Fixes #1479, adding unescaping author field.
This commit is contained in:
parent
cff5a5461c
commit
c938a06ae2
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ function doWeb(doc, url) {
|
|||
aus = aus.split(/(,|and)/);
|
||||
for (var a in aus) {
|
||||
if (aus[a] != "," && aus[a] != "and" && aus[a].match(/\w+/)) {
|
||||
item.creators.push(Zotero.Utilities.cleanAuthor(Zotero.Utilities.trimInternal(aus[a]), "author"));
|
||||
item.creators.push(Zotero.Utilities.cleanAuthor(Zotero.Utilities.unescapeHTML(Zotero.Utilities.trimInternal(aus[a]), "author")));
|
||||
}
|
||||
}
|
||||
item.complete();
|
||||
|
|
Loading…
Reference in a new issue