summaryrefslogtreecommitdiffstats
path: root/system/core/URI.php
diff options
context:
space:
mode:
authorPaul <p4ul.sincl4ir@gmail.com>2011-08-26 20:51:16 +0200
committerPaul <p4ul.sincl4ir@gmail.com>2011-08-26 20:51:16 +0200
commitf7345e4f5f6e44886eac337d8da064f541df8b9a (patch)
treec06699585a88e36a66c6203aa98732ce1babdc7d /system/core/URI.php
parent6935931e0165aed0ef2d5bc9c0f51bf845969c35 (diff)
changed private functions to protected so MY_URI can override them.
Diffstat (limited to 'system/core/URI.php')
-rwxr-xr-xsystem/core/URI.php4
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);