Fix critical bug with note saving
This commit is contained in:
parent
28d4fef65b
commit
794349b374
|
@ -1111,7 +1111,7 @@ Zotero.Item.prototype.updateNote = function(text){
|
||||||
if (sourceItemID)
|
if (sourceItemID)
|
||||||
{
|
{
|
||||||
var sql = "REPLACE INTO itemNotes VALUES (?,?,?)";
|
var sql = "REPLACE INTO itemNotes VALUES (?,?,?)";
|
||||||
var bindParams = [{string:text}, sourceItemID, this.getID()];
|
var bindParams = [this.getID(), sourceItemID, {string:text}];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user