From 794349b374697eeddeb64572d4528e95dfa56f13 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 29 Mar 2007 13:16:07 +0000 Subject: [PATCH] Fix critical bug with note saving --- chrome/content/zotero/xpcom/data_access.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/data_access.js b/chrome/content/zotero/xpcom/data_access.js index 2f5b5d17c..9b11a9520 100644 --- a/chrome/content/zotero/xpcom/data_access.js +++ b/chrome/content/zotero/xpcom/data_access.js @@ -1111,7 +1111,7 @@ Zotero.Item.prototype.updateNote = function(text){ if (sourceItemID) { var sql = "REPLACE INTO itemNotes VALUES (?,?,?)"; - var bindParams = [{string:text}, sourceItemID, this.getID()]; + var bindParams = [this.getID(), sourceItemID, {string:text}]; } else {