comparison program/lib/Roundcube/rcube_imap_generic.php @ 18:b631c1c7a3ce

More cleaning up more php8 Warnings/deprecations, including _many_ ediff-based fixes on rcmail_output_html.php
author Charlie Root
date Tue, 07 Oct 2025 11:20:40 -0400
parents dd5ed6ef69c9
children 73124dd49283
comparison
equal deleted inserted replaced
17:dd5ed6ef69c9 18:b631c1c7a3ce
2561 break; 2561 break;
2562 default: 2562 default:
2563 if (strlen($field) < 3) { 2563 if (strlen($field) < 3) {
2564 break; 2564 break;
2565 } 2565 }
2566 if ($result[$id]->others[$field]) { 2566 if (($result[$id]->others[$field])??null) {
2567 $string = array_merge((array)$result[$id]->others[$field], (array)$string); 2567 $string = array_merge((array)$result[$id]->others[$field], (array)$string);
2568 } 2568 }
2569 $result[$id]->others[$field] = $string; 2569 $result[$id]->others[$field] = $string;
2570 } 2570 }
2571 } 2571 }