MyBB.de Forum

Normale Version: Angehänge Datein Hintergrund ändern
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2
Also es wurde oben folgender Code angezeigt:

Zitat:Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /users/antigrav/www/cs2dmapping/forum/inc/class_core.php on line 169
Dann hast du irgendeine Klammer o.ä. übersehen... Die Änderung an sich ist korrekt.
Also das was ich ersetzt habe sieht so aus:

PHP-Code:
// Determine Magic Quotes Status (< PHP 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); 
        
            }
        
        } 
Das entspricht nicht dem von mir geposteten Code. Da ist mindestens eine Klammer am Ende zu viel.
Ok habe jetzt daraus:

PHP-Code:
// Determine Magic Quotes Status (< PHP 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); 

Gemacht.

Das Forum wird wieder angezeigt. DOCH:

Schrift ist größer und kein Angehängte Datein Feld da!

Sehe selbst:http://antigrav.bplaced.net/cs2dmapping/forum/showthread.php?tid=2&pid=3#pid3
Das veränderte Template musst du noch zurücksetzen.
Das gleiche wie am Anfang
Seiten: 1 2