Use === when testing for empty value and setting defaults

pull/2926/head
Isaac Connor 2020-03-09 14:39:22 -04:00
parent eb26c5f798
commit b05916fc50
1 changed files with 3 additions and 2 deletions

View File

@ -206,7 +206,8 @@ class ZM_Object {
}
}
} # end foreach default
}
} # end if defaults
foreach ( $new_values as $field => $value ) {
if ( method_exists($this, $field) ) {
@ -281,7 +282,7 @@ class ZM_Object {
# Set defaults. Note that we only replace "" with null, not other values
# because for example if we want to clear TimestampFormat, we clear it, but the default is a string value
foreach ( $this->defaults as $field => $default ) {
if ( (!property_exists($this, $field)) or ($this->{$field} == '') ) {
if ( (!property_exists($this, $field)) or ($this->{$field} === '') ) {
if ( is_array($default) ) {
$this->{$field} = $default['default'];
} else if ( $default == null ) {