FIX regression by php8 fix on setVarsFromFetchObj

This commit is contained in:
Francis Appels 2022-07-10 13:00:34 +02:00
parent c77632ced8
commit 6362cdfe2e

View File

@ -8891,7 +8891,7 @@ abstract class CommonObject
}
}
} else {
$this->{$field} = !empty($obj->{$field}) ? $obj->{$field} : null;
$this->{$field} = isset($obj->{$field}) ? $obj->{$field} : null;
}
}