revert change to comparision in markDirty Method

This commit is contained in:
Harald Bamberger
2026-05-13 11:16:18 +02:00
parent 17772c3738
commit d27071528f
@@ -40,7 +40,7 @@ abstract class AbstractBestandteil implements IValidation
if( is_bool($new_value) && ($old_value !== $new_value) ) {
$this->modifiedcolumns[$columnname] = $columnname;
} else if($old_value !== $new_value) {
} else if($old_value != $new_value) {
$this->modifiedcolumns[$columnname] = $columnname;
}
}