From 09a45be4b33751c1bd481f4301363db723b6881b Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Tue, 10 Feb 2009 21:40:21 +0000 Subject: changed exit() to show_error() in _filter_uri() http://codeigniter.com/bug_tracker/bug/6500/ --- system/libraries/URI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system') diff --git a/system/libraries/URI.php b/system/libraries/URI.php index aa2d71e87..b95c74e1a 100644 --- a/system/libraries/URI.php +++ b/system/libraries/URI.php @@ -189,7 +189,7 @@ class CI_URI { if ( ! preg_match("|^[".preg_quote($this->config->item('permitted_uri_chars'))."]+$|i", $str)) { header('HTTP/1.1 400 Bad Request'); - exit('The URI you submitted has disallowed characters.'); + show_error('The URI you submitted has disallowed characters.'); } } -- cgit v1.2.3-24-g4f1b