I need to add a semicolon (;) to the Codeigniter permitted URL chars pattern, here is the code:
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_-';
I need to add the semicolon (I need this because some semicolons are passed with the URL), but I don't know how to add it to the pattern.
Thanks in advance!