We found that in PHP 4.3.0 cls-fast_template.php give an error like:
Fatal error: Cannot redeclare clear_parse() in /usr/local/samba/share/projects/grafx/test/rate/cls_fast_template.php on line XXX
To avoid this, comment out or delete the following lines.
// ************************************************************
// Aliased function - used for compatibility with CGI::FastTemplate
function clear_parse ()
{
$this->clear_assign();
}
// ************************************************************
// Clears all variables set by assign()
This should solve the problem. |