Fixed error in History.add() call in Item.save() that was breaking new item inserts
This commit is contained in:
parent
9e78d62b13
commit
a207bf3817
1 changed files with 1 additions and 1 deletions
|
@ -663,7 +663,7 @@ Scholar.Item.prototype.save = function(){
|
||||||
Scholar.DB.query(sql, sqlValues);
|
Scholar.DB.query(sql, sqlValues);
|
||||||
|
|
||||||
Scholar.History.add('itemData', 'itemID-fieldID',
|
Scholar.History.add('itemData', 'itemID-fieldID',
|
||||||
this.getField(fieldID));
|
[itemID, fieldID]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue