Hallo, Gast! (Registrieren)

Letzte Ankündigung: MyBB 1.8.39 veröffentlicht (02.06.25)


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste
Header already sent und andere fehler
#31
Das heißt Semikolon und deine Vermutung ist total daneben.
[Bild: banner.png]

Bitte die Foren-Regeln beachten und im Profil die verwendete MyBB-Version angeben.
#32
Über das if(get_magic_quotes_gpc()) muss noch eine geschweife klammer? oda wo meins du

Wenn das net stimmt kannse ma kurz posten wie es aussehn soll?
Sry kenn mich damit net so gut aus xD
#33
PHP-Code:
if(defined("IGNORE_CLEAN_VARS"))
{
if(!
is_array(IGNORE_CLEAN_VARS))
{
$this->ignore_clean_variables = array(IGNORE_CLEAN_VARS);
}
else
{
$this->ignore_clean_variables = IGNORE_CLEAN_VARS;
}
}
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);

// Determine input
$this->parse_incoming($_GET);
$this->parse_incoming($_POST);

if(
$_SERVER['REQUEST_METHOD'] == "POST")
{
$this->request_method = "post";
}
else if(
$_SERVER['REQUEST_METHOD'] == "GET")
{
$this->request_method = "get";
}
#34
Vielen dank ich glaube jetzt geht wieder alle Wink