diff --git a/chrome/content/zotero/fileInterface.js b/chrome/content/zotero/fileInterface.js index 50ac1019b4..a4c63e513d 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"));