From a3f7f97e02ec733684df0ca51b0683c358d327db Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 20 Dec 2012 01:21:36 -0500 Subject: [PATCH] Fix broken Note/Citation option in "Create Bibiography" --- chrome/content/zotero/fileInterface.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/fileInterface.js b/chrome/content/zotero/fileInterface.js index 50ac1019b..a4c63e513 100644 --- a/chrome/content/zotero/fileInterface.js +++ b/chrome/content/zotero/fileInterface.js @@ -500,12 +500,12 @@ var Zotero_File_Interface = new function() { // generate bibliography try { if(io.method == 'copy-to-clipboard') { - copyItemsToClipboard(items, io.style, false, io.mode === "citation"); + copyItemsToClipboard(items, io.style, false, io.mode === "citations"); } else { var style = Zotero.Styles.get(io.style); var bibliography = Zotero.Cite.makeFormattedBibliographyOrCitationList(style, - items, format, io.mode === "citation"); + items, format, io.mode === "citations"); } } catch(e) { window.alert(Zotero.getString("fileInterface.bibliographyGenerationError"));