Index: branches/RC/core/kernel/parser/template.php =================================================================== diff -u -r8929 -r9286 --- branches/RC/core/kernel/parser/template.php (.../template.php) (revision 8929) +++ branches/RC/core/kernel/parser/template.php (.../template.php) (revision 9286) @@ -141,7 +141,7 @@ { list ($path, $module_filename) = $this->GetTemplatePaths($filename); - $template =& new Template($path, $module_filename, $silent); + $template = new Template($path, $module_filename, $silent); if (!isset($title)) $title = $filename; $this->SetTemplate($title, $template); } @@ -183,14 +183,14 @@ function SetTemplateBody($title, $body) { - $template =& new Template(); + $template = new Template(); $template->SetBody($body); $this->SetTemplate($title, $template); } function ParseTemplate($template_name) { - $Parser =& new TemplateParser($this->Application); + $Parser = new TemplateParser($this->Application); return $Parser->Parse( $this->GetTemplateBody($template_name) ); }