MyBB.de Forum

Normale Version: Header already sent und andere fehler
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2 3 4
Das heißt Semikolon und deine Vermutung ist total daneben.
Ü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
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";
        } 
Vielen dank ich glaube jetzt geht wieder alle Wink
Seiten: 1 2 3 4