comparison program/lib/Roundcube/rcube_message_header.php @ 21:73124dd49283

More cleaning up php8 Warnings/deprecations, noticed that setting non-my-Dates mailboxes to sort on Date isn't sticky over ctrl-R
author Charlie Root
date Thu, 09 Oct 2025 11:31:41 -0400
parents b6a96bdd6b29
children 303b85d5b561
comparison
equal deleted inserted replaced
20:4aec5e272733 21:73124dd49283
250 250
251 if (isset($this->obj_headers[$name])) { 251 if (isset($this->obj_headers[$name])) {
252 $value = $this->{$this->obj_headers[$name]}; 252 $value = $this->{$this->obj_headers[$name]};
253 } 253 }
254 else { 254 else {
255 $value = $this->others[$name]; 255 $value = $this->others[$name]??null;
256 } 256 }
257 257
258 if ($decode) { 258 if ($decode) {
259 if (is_array($value)) { 259 if (is_array($value)) {
260 foreach ($value as $key => $val) { 260 foreach ($value as $key => $val) {