17.05.2010, 14:41
Hi,
habe auf PHP 5.3 umgestellt und das selbe Problem. Es handelt sich um MyBB 1.4.13. Ich habe einfach ein kleines else dranhängt:
so funktioniert es bei mir...warum jetzt allerdings automatisch escaped wird, verstehe ich nicht. das wurde doch in php 5.3 rausgenommen?
habe auf PHP 5.3 umgestellt und das selbe Problem. Es handelt sich um MyBB 1.4.13. Ich habe einfach ein kleines else dranhängt:
Code:
if(version_compare(PHP_VERSION, '5.3', '<'))
{
if(get_magic_quotes_gpc())
{
$this->magicquotes = 1;
$this->strip_slashes_array($_POST);
$this->strip_slashes_array($_GET);
$this->strip_slashes_array($_COOKIE);
}
set_magic_quotes_runtime(0);
@ini_set("magic_quotes_gpc", 0);
@ini_set("magic_quotes_runtime", 0);
} else {
$this->strip_slashes_array($_POST);
$this->strip_slashes_array($_GET);
$this->strip_slashes_array($_COOKIE);
}
so funktioniert es bei mir...warum jetzt allerdings automatisch escaped wird, verstehe ich nicht. das wurde doch in php 5.3 rausgenommen?