Addresses the oversight in the original implementation that missed this;
important if we're going to differentiate between creating and editing
a record for triggers.
git-svn-id: svn://svn.open-ils.org/ILS/trunk@18695
dcc99617-32d9-48b4-a31d-
7c20da2025e4
"label": "Save",
"func": function(xmlString) {
rec.marc(xmlString);
+ rec.edit_date('now');
rec.ischanged(true);
pcrud.update(rec);
alert("Record was saved");
"label": opac_strings.SAVE_MFHD_LABEL,
"func": function(xmlString) {
rec.marc(xmlString);
+ rec.edit_date('now');
rec.ischanged(true);
pcrud.update(rec);
}