diff --git a/chrome/content/zotero/xpcom/style.js b/chrome/content/zotero/xpcom/style.js index e9a5dd4e15..bc72e1b633 100644 --- a/chrome/content/zotero/xpcom/style.js +++ b/chrome/content/zotero/xpcom/style.js @@ -649,7 +649,7 @@ Zotero.Style = function (style, path) { this.locale = Zotero.Utilities.xpathText(doc, '/csl:style/@default-locale', Zotero.Styles.ns) || null; this._uppercaseSubtitles = false; - var uppercaseSubtitlesRE = /^apa($|-)|^(academy-of-management|american-medical-association)/; + var uppercaseSubtitlesRE = /^apa($|-)|^(academy-of-management)/; var shortIDMatches = this.styleID.match(/\/?([^/]+)$/); this._uppercaseSubtitles = !!shortIDMatches && uppercaseSubtitlesRE.test(shortIDMatches[1]); this._class = doc.documentElement.getAttribute("class");