summaryrefslogtreecommitdiffstats
path: root/system/core
diff options
context:
space:
mode:
Diffstat (limited to 'system/core')
-rw-r--r--system/core/URI.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/system/core/URI.php b/system/core/URI.php
index 1817374b7..067338d2a 100644
--- a/system/core/URI.php
+++ b/system/core/URI.php
@@ -327,12 +327,7 @@ class CI_URI {
show_error('The URI you submitted has disallowed characters.', 400);
}
- // Convert programatic characters to entities and return
- return str_replace(
- array('$', '(', ')', '%28', '%29'), // Bad
- array('$', '(', ')', '(', ')'), // Good
- $str
- );
+ return $str;
}
// --------------------------------------------------------------------