From a00be04885c351f3e6e049a544444bc1c476d2fe Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Sat, 18 Jan 2014 16:50:12 +0200 Subject: Fix #2827 --- system/core/URI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/core') diff --git a/system/core/URI.php b/system/core/URI.php index 80cf0b4e9..6e0d7f993 100644 --- a/system/core/URI.php +++ b/system/core/URI.php @@ -94,7 +94,7 @@ class CI_URI { $this->_permitted_uri_chars = $this->config->item('permitted_uri_chars'); // If it's a CLI request, ignore the configuration - if (is_cli() OR ($protocol = strtoupper($this->config->item('uri_protocol')) === 'CLI')) + if (is_cli() OR ($protocol = strtoupper($this->config->item('uri_protocol'))) === 'CLI') { $this->_set_uri_string($this->_parse_argv()); } -- cgit v1.2.3-24-g4f1b