diff options
author | Paul <p4ul.sincl4ir@gmail.com> | 2011-08-26 20:51:16 +0200 |
---|---|---|
committer | Paul <p4ul.sincl4ir@gmail.com> | 2011-08-26 20:51:16 +0200 |
commit | f7345e4f5f6e44886eac337d8da064f541df8b9a (patch) | |
tree | c06699585a88e36a66c6203aa98732ce1babdc7d | |
parent | 6935931e0165aed0ef2d5bc9c0f51bf845969c35 (diff) |
changed private functions to protected so MY_URI can override them.
-rwxr-xr-x | system/core/URI.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/URI.php b/system/core/URI.php index a3ae20cc3..8946bc76b 100755 --- a/system/core/URI.php +++ b/system/core/URI.php @@ -175,7 +175,7 @@ class CI_URI { * @access private * @return string */ - private function _detect_uri() + protected function _detect_uri() { if ( ! isset($_SERVER['REQUEST_URI']) OR ! isset($_SERVER['SCRIPT_NAME'])) { @@ -232,7 +232,7 @@ class CI_URI { * @access private * @return string */ - private function _parse_cli_args() + protected function _parse_cli_args() { $args = array_slice($_SERVER['argv'], 1); |