Browse Source

Clean up request::uri method.

Taylor Otwell 14 years ago
parent
commit
9b9a880326
1 changed files with 1 additions and 4 deletions
  1. 1 4
      system/request.php

+ 1 - 4
system/request.php

@@ -43,10 +43,7 @@ class Request {
 				throw new \Exception("Malformed request URI. Request terminated.");
 			}
 
-			if (strpos($uri, '/index.php') === 0)
-			{
-				$uri = str_replace('/index.php', '', $uri);
-			}
+			$uri = str_replace('/index.php', '', $uri);
 		}
 		// -------------------------------------------------------
 		// Neither PATH_INFO or REQUEST_URI are available.