it means the function tep_sanitize_string() is not present in your system. Either it is there but broken (in which case you'd probably have more errors) or it is missing. Look in includes/functions/general and see if it's there (should be line 56-ish), if not then paste in the following:
Code:
function tep_sanitize_string($string) {
$string = ereg_replace(' +', ' ', trim($string));
return preg_replace("/[<>]/", '_', $string);
}
Of course it's possible that if that one's missing, you may have more mising and fixing that error could mean you have a few more to fix too.
jon
Bookmarks