diff options
author | Andrey Andreev <narf@devilix.net> | 2014-01-18 15:50:12 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-01-18 15:50:12 +0100 |
commit | a00be04885c351f3e6e049a544444bc1c476d2fe (patch) | |
tree | 83117aa46883c9bae42d6dfadee2adaf43f8383f /system | |
parent | e17ccdb9cefa21df944b416a5461661419263ad0 (diff) |
Fix #2827
Diffstat (limited to 'system')
-rw-r--r-- | system/core/URI.php | 2 |
1 files changed, 1 insertions, 1 deletions
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()); } |