1
FILE:
Quote:
\htdocs\class\module.textsanitizer.php
LINE:523
le="color: #000000"><?php if (!@get_magic_quotes_gpc()) { $text = addslashes($text); }
chang to
le="color: #000000"><?php $text = addslashes($text);
LINE:797
le="color: #000000"><?php 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.