Commit a23c6ab9 authored by Taylor Otwell's avatar Taylor Otwell

Do not strtolower request URI.

parent ca97abe7
...@@ -51,7 +51,7 @@ class Request { ...@@ -51,7 +51,7 @@ class Request {
$uri = substr($uri, strlen($index)); $uri = substr($uri, strlen($index));
} }
return (($uri = trim($uri, '/')) == '') ? '/' : strtolower($uri); return (($uri = trim($uri, '/')) == '') ? '/' : $uri;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment