From f9b823d0e849937fc38e012a366cd909766eef96 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Thu, 8 Sep 2011 23:21:37 +0000 Subject: [PATCH] Don't update citations that haven't changed, even on refresh --- chrome/content/zotero/xpcom/integration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js index fd376b534..0f81f3722 100644 --- a/chrome/content/zotero/xpcom/integration.js +++ b/chrome/content/zotero/xpcom/integration.js @@ -844,7 +844,7 @@ Zotero.Integration.Document.prototype._updateDocument = function(forceCitations, isRich = true; } - if(forceCitations || citation.properties.formattedCitation !== formattedCitation) { + if(citation.properties.formattedCitation !== formattedCitation) { // Check if citation has been manually modified if(!ignoreCitationChanges && citation.properties.plainCitation) { var plainCitation = field.getText();