Das sagt er mir nachdem ich den categories hierarchie installiert habe.Parse error: parse error, unexpected $ in /home/www/web4/html/forum/includes/template.php(127) : eval()'d code on line 88
Powered by phpBB 2.0.5 © 2001 phpBB Group
MOD Version: 1.1.0
Code: Alles auswählen
/**
* Load the file for the handle, compile the file,
* and run the compiled code. This will print out
* the results of executing the template.
*/
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.
[color=red]eval($this->compiled_code[$handle]);[/color]
return true;
}Aso: Das kommt wenn ich nen neues Forum erstellen will.