Code: Alles auswählen
Parse error: parse error in /var/www/board/includes/template.php(127) : eval()'d code on line 80
attachment mod
portal mod von asws
und news mod
chronicles style
ich denke mal das der teil für die pms ist
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.
eval($this->compiled_code[$handle]);
return true;
}