summaryrefslogtreecommitdiffstats
path: root/system/libraries/Router.php
diff options
context:
space:
mode:
authorRick Ellis <rick.ellis@ellislab.com>2007-06-09 03:16:00 +0200
committerRick Ellis <rick.ellis@ellislab.com>2007-06-09 03:16:00 +0200
commitf660315a3cea96279a755ece825aabb9dcfd5a1d (patch)
treedc10a83aeb13407c777743575d2eacb5164bf1f0 /system/libraries/Router.php
parent2817ad28ec0703ab8a2b88172a2124170b20384b (diff)
Diffstat (limited to 'system/libraries/Router.php')
-rw-r--r--system/libraries/Router.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Router.php b/system/libraries/Router.php
index e44d9a4db..6c3062c07 100644
--- a/system/libraries/Router.php
+++ b/system/libraries/Router.php
@@ -303,7 +303,7 @@ class CI_Router {
// Is there a PATH_INFO variable?
// Note: some servers seem to have trouble with getenv() so we'll test it two ways
- $path = (isset($_SERVER['PATH_INFO'])) ? $_SERVER['PATH_INFO'] : @getenv('PATH_INFO');
+ $path = (isset($_SERVER['PATH_INFO'])) ? $_SERVER['PATH_INFO'] : @getenv('PATH_INFO');
if ($path != '' AND $path != "/".SELF)
{
return $path;