Parse error: parse error, unexpected '}' in ..../phpBB2/includes/template.php(127) : eval()'d code on line 84
und das Forum wird in einer Art reinem Texcode angezeigt.
in der template.php haben wir nichts geändert und es steht folgender Code in der entsprechende Zeile:
Code: Alles auswählen
function pparse($handle)
{
if (!$this->loadfile($handle))
{
die("Template->pparse(): Couldn't load template file for handle $handle");
}
// actually compile the template now.
if (!isset($this->compiled_code[$handle]) || empty($this->compiled_code[$handle]))
{
// Actually compile the code now.
$this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle]);
}
// Run the compiled code.
eval($this->compiled_code[$handle]);
return true;
} Danke
Gruß Elektron