mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-20 01:21:20 +01:00
Fix PHP Fatal error: Uncaught TypeError: html::quote(): Argument #1 ($str) must be of type string, null given (#9957)
This commit is contained in:
@@ -1650,7 +1650,7 @@ class rcmail_output_html extends rcmail_output
|
||||
$value = implode(', ', $value);
|
||||
}
|
||||
|
||||
return html::quote($value);
|
||||
return html::quote((string) $value);
|
||||
case 'form':
|
||||
return $this->form_tag($attrib);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user