Fixed error in History.add() call in Item.save() that was breaking new item inserts

This commit is contained in:
Dan Stillman 2006-06-25 05:26:53 +00:00
parent 9e78d62b13
commit a207bf3817

View file

@ -663,7 +663,7 @@ Scholar.Item.prototype.save = function(){
Scholar.DB.query(sql, sqlValues);
Scholar.History.add('itemData', 'itemID-fieldID',
this.getField(fieldID));
[itemID, fieldID]);
}
}