You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]));
The text was updated successfully, but these errors were encountered:
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]));
The text was updated successfully, but these errors were encountered: