PHP 8.5 compatibility

This commit is contained in:
Paolo
2026-01-13 12:08:06 +01:00
parent c113c80862
commit b50e3bc075
10 changed files with 45 additions and 35 deletions
+1 -1
View File
@@ -130,6 +130,6 @@ class basis
*/
public function convert_html_chars($value)
{
return htmlspecialchars($value);
return htmlspecialchars($value ?? '');
}
}