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?
Help trying to null out a function error
Moderator: General Moderators
- Ambush Commander
- DevNet Master
- Posts: 3698
- Joined: Mon Oct 25, 2004 9:29 pm
- Location: New Jersey, US
Thanks for the recommendation, but this is running on a well established store and I just added an contribution to post articles and cannot get it to work due to the error. The contribution suport is not providing any answers so I decided to go it on my own and hack the code to make the fatal error request go away. Is there any way to use PHP code to eliminate the request? I think I have it started but I am not that great with PHP yet.