Help trying to null out a function error
Posted: Wed Aug 03, 2005 5:02 pm
I am running a osCommerce site and have error of:
Fatal error: Call to undefined function: clean_html_comments() in /var/www/html/articles.php on line 350
I am trying to fix it by nulling out the function request in application_top.php with:
// articles fix
if (function_exists('clean_html_comments')) {
????(???);
}
but am not sure what to put into the ???? area to get this to null out. Any Help?
Fatal error: Call to undefined function: clean_html_comments() in /var/www/html/articles.php on line 350
I am trying to fix it by nulling out the function request in application_top.php with:
// articles fix
if (function_exists('clean_html_comments')) {
????(???);
}
but am not sure what to put into the ???? area to get this to null out. Any Help?