diff --git a/system/libraries/Router.php b/system/libraries/Router.php
index e44d9a4..6c3062c 100644
--- a/system/libraries/Router.php
+++ b/system/libraries/Router.php
@@ -303,7 +303,7 @@
// 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;