nbao opened this issue 3 years ago · 1 comments
I got some warning for PHP 7.4 Please fix in filters/FilterASCIIHex.php line 57 $hex .= sprintf("%02x", ord($str{$i})); to $hex .= sprintf("%02x", ord($str[$i]));
$hex .= sprintf("%02x", ord($str{$i}));
Yeah this is easy
search: {$i} replace: [$i]
This issue is in multiple files by the way. Easy fix