1
FILE:
Quote:
\htdocs\class\module.textsanitizer.php
LINE:523
if (!@get_magic_quotes_gpc()) {
$text = addslashes($text);
}
chang to
$text = addslashes($text);
LINE:797
if (@get_magic_quotes_gpc()) {
$text = stripslashes($text);
}
DEL THE CODE
Because some installer used function addSlashes,On PHP 8.0.13 installer Can not continue.