MyBB.de Forum

Normale Version: Fehler im Forum bei mir
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2
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:

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?
Man kann magic_quotes trotzdem aktivieren (unsinnig, aber bei Freehostern verbreitet).
Seiten: 1 2