diff --git a/chrome/content/zotero/xpcom/server/server_localAPI.js b/chrome/content/zotero/xpcom/server/server_localAPI.js index 2ddd9bd93b..0bca900251 100644 --- a/chrome/content/zotero/xpcom/server/server_localAPI.js +++ b/chrome/content/zotero/xpcom/server/server_localAPI.js @@ -857,7 +857,7 @@ async function citeprocToHTML(itemOrItems, searchParams, asCitationList) { // Filter out attachments, annotations, and notes, which we can't generate citations for items = items.filter(item => item.isRegularItem()); - let styleID = searchParams.get('style') || 'chicago-note-bibliography'; + let styleID = searchParams.get('style') || 'chicago-shortened-notes-bibliography'; let locale = searchParams.get('locale') || 'en-US'; let linkWrap = searchParams.get('linkwrap') == '1'; diff --git a/test/tests/citeprocRsBridgeTest.js b/test/tests/citeprocRsBridgeTest.js index af55676859..75065b7b30 100644 --- a/test/tests/citeprocRsBridgeTest.js +++ b/test/tests/citeprocRsBridgeTest.js @@ -1,7 +1,7 @@ "use strict"; describe("Zotero.CiteprocRs", function () { - var chicagoNoteStyleID = "http://www.zotero.org/styles/chicago-note-bibliography"; + var chicagoNoteStyleID = "http://www.zotero.org/styles/chicago-shortened-notes-bibliography"; var chicagoAuthorDateStyleID = "http://www.zotero.org/styles/chicago-author-date"; var style; function getCiteprocJSEngine(style) { @@ -106,7 +106,7 @@ describe("Zotero.CiteprocRs", function () { citeprocRS.free(); }); - describe('with chicago-note-bibliography.csl', function () { + describe('with chicago-shortened-notes-bibliography.csl', function () { before(function () { style = Zotero.Styles.get(chicagoNoteStyleID); });