commit a3f7f97e02ec733684df0ca51b0683c358d327db
parent 8b37031174fe5e97d39cbc73fe3439a9bdd5ff84
Author: Dan Stillman <dstillman@zotero.org>
Date: Thu, 20 Dec 2012 01:21:36 -0500
Fix broken Note/Citation option in "Create Bibiography"
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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"));