diff program/lib/Roundcube/html.php @ 27:c32b53434b47

more compensation for deprecated empty cases
author Charlie Root
date Sun, 18 Jan 2026 14:20:29 -0500
parents 303b85d5b561
children
line wrap: on
line diff
--- a/program/lib/Roundcube/html.php	Sat Oct 18 12:24:31 2025 -0400
+++ b/program/lib/Roundcube/html.php	Sun Jan 18 14:20:29 2026 -0500
@@ -953,6 +953,6 @@
     private function _col_tagname()
     {
         static $col_tagnames = array('table' => 'td', '*' => 'span');
-        return $col_tagnames[$this->tagname] ?: $col_tagnames['*'];
+        return ($col_tagnames[$this->tagname]??false) ?: $col_tagnames['*'];
     }
 }