Line 280 is
Code:
$diffstr = $app->db->quote(serialize($diffrec_full));
Changing it to
Code:
$diffstr = $this>quote(serialize($diffrec_full));
Does not fix it.
$diffrec_full comes from
Code:
$tmp = $this->diffrec($record_old, $record_new);
$diffrec_full = $tmp['diff_rec'];
where $record_old and $record_new are passed from $old_rec and $new_rec respectively, one is an object, one is not.
Code:
$old_rec = array();
$new_rec = $this->queryOneRecord("SELECT * FROM $tablename WHERE $index_field = '$index_value'");
------------
Changing
Code:
$old_rec = array();
to
Code:
$old_rec = (object) array();
fixes the error. I don't think I am misinterpreting.