diff --git a/chrome/content/zotero/xpcom/cite.js b/chrome/content/zotero/xpcom/cite.js index 8ec9cdab5..16b7d2aa9 100644 --- a/chrome/content/zotero/xpcom/cite.js +++ b/chrome/content/zotero/xpcom/cite.js @@ -1243,7 +1243,7 @@ Zotero.CSL.prototype._getFieldValue = function(name, element, item, formattedStr status = true; } } else if(condition.field) { - var formattedString = new Scholar.CSL.FormattedString(this, "Text"); + var formattedString = new Zotero.CSL.FormattedString(this, "Text"); status = this._getFieldValue(condition.field, this._getFieldDefaults(condition.field), item, formattedString, bibCitElement); } diff --git a/scrapers.sql b/scrapers.sql index 6d47c01c2..7f6e85bab 100644 --- a/scrapers.sql +++ b/scrapers.sql @@ -7108,7 +7108,7 @@ record.prototype.translate = function(item) { // some LOC entries have no listed author, but have the author in the person subject field as the first entry var field = this.getFieldSubfields("600"); if(field[0]) { - item.creators.push(Scholar.Utilities.cleanAuthor(field[0]["a"], true)); + item.creators.push(Zotero.Utilities.cleanAuthor(field[0]["a"], true)); } }