From: John C. <joh...@ua...> - 2004-06-08 15:40:33
|
Reini, I've tracked the offending line down to line 133 in Template.php: eval('?>' . $this->_munge_input($this->_tmpl)); I can echo out the contents of $this->_munge_input($this->_tmpl) so that call isn't crashing me. Here is the contents of $this->_munge_input($this->_tmpl) ----------------------------------------------------------------- stuff. * * NS/MO/IE/Op Browsers before 4.0 don't like that. */ if (browserVersion() >= 4.0) printf("\n", CHARSET); ?> _print( Template('head') );?> _print( Template('body') );?> \n", $RCS_IDS); } ?> ----------------------------------------------------------------- It appears that there is a comment header missing somewhere. John |