Do not strtolower request URI.

This commit is contained in:
Taylor Otwell 2011-07-22 08:53:28 -07:00
parent ca97abe77f
commit a23c6ab9c1
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public static function uri()
$uri = substr($uri, strlen($index)); $uri = substr($uri, strlen($index));
} }
return (($uri = trim($uri, '/')) == '') ? '/' : strtolower($uri); return (($uri = trim($uri, '/')) == '') ? '/' : $uri;
} }
/** /**