I checked core.input.php and it has NOT been modified.
It seems that the problem is coming up more and more often.
Before it was only for users with IE 6. But now users with Firefox get the page when using IE7 on the same PC doesn’t give the error.
We’ve gone through and had users clear out there cache and restart the browser. No luck.
This started this past Monday. Once a user gets the bad page, they’ll continue to get it.
Is it possible there is some bad data somewhere in the database that is causing this?
I will push the manager responsible for the site to upgrade from 1.6.0 to 1.6.3 to that we are more current. Other then that, any other idea/thoughts?
Here is the function from core.input.php:
/** -------------------------------------
/** Clean global input keys
/** -------------------------------------*/
// To prevent malicious users from trying to exploit keys
// we make sure that keys are only named with alpha-numeric text
function clean_input_keys($str)
{
if ( ! ereg("^[A-Za-z0-9\:\_\/\-]+$", $str))
{
exit($str);
exit(’Disallowed Key Characters’);
}
if ( ! get_magic_quotes_gpc())
{
$str = addslashes($str);
}
return $str;
}
/* END */