Simple line in Codeigniter that worked before, now throws Dissallowed Key Character error.. In core/Input.php
function _clean_input_keys($str)
{
if ( ! preg_match("/^[a-z0-9:_\/-@]+$/i", $str))
exit('Disallowed Key Characters.');
}
It fails due to a dash sign in blah-12-345... It worked fine before, but why it fails now??? Thanks