Merge pull request #21487 from fappels/16_fix_commonobject
FIX regression by php8 fix on setVarsFromFetchObj
This commit is contained in:
commit
99324bef0c
@ -8891,7 +8891,7 @@ abstract class CommonObject
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$this->{$field} = !empty($obj->{$field}) ? $obj->{$field} : null;
|
$this->{$field} = isset($obj->{$field}) ? $obj->{$field} : null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user