Couchtomatoe Code Monkey Total Posts: 3049
 Birthday: 02-03 Location: Richmond, Virginia Average Post Ranks%:
|
11-13-10 09:29 AM - Post#84884
In response to sb1963
they will be fixed in 3.2 but for now in init.php
find
Code:
$qstring = explode("/",$_SERVER['QUERY_STRING']);
add above it
Code:
$entities = array('%21', '%2A', '%27', '%28', '%29', '%3B', '%3A', '%40', '%26', '%3D', '%2B', '%24', '%2C', '%2F', '%3F', '%25', '%23', '%5B', '%5D');
$replacements = array('!', '*', "'", "(", ")", ";", ":", "@", "&", "=", "+", "$", ",", "/", "?", "%", "#", "[", "]");
$_SERVER['QUERY_STRING'] = str_replace($entities, $replacements, $_SERVER['QUERY_STRING']);
|