Index: branches/RC/core/kernel/utility/debugger.php =================================================================== diff -u -N -r10580 -r10592 --- branches/RC/core/kernel/utility/debugger.php (.../debugger.php) (revision 10580) +++ branches/RC/core/kernel/utility/debugger.php (.../debugger.php) (revision 10592) @@ -81,7 +81,6 @@ */ var $baseURL = ''; - /** * Holds last recorded timestamp (for appendTimestamp) * Index: branches/RC/core/kernel/nparser/nparser.php =================================================================== diff -u -N -r10580 -r10592 --- branches/RC/core/kernel/nparser/nparser.php (.../nparser.php) (revision 10580) +++ branches/RC/core/kernel/nparser/nparser.php (.../nparser.php) (revision 10592) @@ -37,18 +37,17 @@ fclose($compiled); return true; } - - function Parse($raw_template, $name=null) + + function Parse($raw_template, $name = null) { $this->CompileRaw($raw_template, $name); ob_start(); $_parser =& $this; eval('?'.'>'.$this->Buffers[0]); - $output = ob_get_contents(); - ob_end_clean(); - return $output; + + return ob_get_clean(); } - + function CompileRaw($data, $t_name) { $code = "extract (\$_parser->Params);\n";