Commit dd095bd
committed
Fix programming error causing undefined property access when dynamic value is unset
Dynamic property access ($row->{$column}) caused PHP warnings when `$value` was
undefined, resulting in attempts to read non-existent properties. Updated the
logic to use null coalescin, which safely returns `null` for missing properties
and prevents these warnings.1 parent c2c9a6b commit dd095bd
1 file changed
Lines changed: 1 addition & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
536 | 536 | | |
537 | 537 | | |
538 | 538 | | |
539 | | - | |
540 | | - | |
541 | | - | |
542 | | - | |
543 | | - | |
| 539 | + | |
544 | 540 | | |
545 | 541 | | |
546 | 542 | | |
| |||
0 commit comments