From 5ab0239bdfea814029f3cc6b1f982f7d53ed784a Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 9 Jul 2019 02:10:07 -0400 Subject: [PATCH] Fix footnotes style in RTF Scan Not sure when this broke --- chrome/content/zotero/rtfScan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/rtfScan.js b/chrome/content/zotero/rtfScan.js index 7ad663806b..612b3babc5 100644 --- a/chrome/content/zotero/rtfScan.js +++ b/chrome/content/zotero/rtfScan.js @@ -505,7 +505,7 @@ var Zotero_RTFScan = new function() { var locale = document.getElementById("locale-menu").value; var style = zStyle.getCiteProc(locale); style.setOutputFormat("rtf"); - var isNote = style.class == "note"; + var isNote = zStyle.class == "note"; // create citations var k = 0;