Remove some lightly used or unused dbFacile functions (#15418)

* Remove some lightly used or unused dbFacile functions
['NULL'] legacy behavior seems unsupported, replace with actual nulls

* Fix refactor mishap

* another

* update baseline

* these were very wrong... what happened?
This commit is contained in:
Tony Murray
2023-10-12 07:15:03 -07:00
committed by GitHub
parent 0540c56d0f
commit a5198d7d57
29 changed files with 50 additions and 195 deletions

View File

@@ -60,7 +60,7 @@ if (! empty($entPhysical)) {
if (! empty($update)) {
if (array_key_exists('entStateLastChanged', $update) && is_null($update['entStateLastChanged'])) {
$update['entStateLastChanged'] = ['NULL'];
$update['entStateLastChanged'] = null;
}
dbUpdate($update, 'entityState', 'entity_state_id=?', [$db_state['entity_state_id']]);