February 4, 20223 yr Hello, do we get soon a version of froxlor that fully supports php8.1 without deprecated warnings? PHP warning/error #8192 htmlentities(): Passing null to parameter #1 ($string) of type string is deprecated lib/Froxlor/PhpHelper.php:67
April 30, 20223 yr Any news on this? Nextcloud 24 added php 8.1 support and also baikal; I did not expect that froxlor will have issues. Just have not thought about it
May 1, 20223 yr Thanks for the update. With the following workaround I was able to eliminate the errors. Up to now there are no side effects. lib/Froxlor/PhpHelper.php:67 // $subject = htmlentities($subject, $quote_style, $charset); $subject = htmlentities((string)$subject, $quote_style, $charset); vendor/froxlor/idna-convert-legacy/src/IdnaConvert.php:191 // $input = trim($input); $input = trim((string)$input); admin_domains.php:688 // $row['termination_date'] = str_replace("0000-00-00", "", $row['termination_date']); $row['termination_date'] = str_replace("0000-00-00", "", (string)$row['termination_date']); customer_domains.php:509 // $row['termination_date'] = str_replace("0000-00-00", "", ($row['termination_date']); $row['termination_date'] = str_replace("0000-00-00", "", (string)$row['termination_date']);
Create an account or sign in to comment