Clean up request::uri method.

This commit is contained in:
Taylor Otwell 2011-06-16 06:17:29 -07:00
parent dae7912c40
commit 9b9a880326
1 changed files with 1 additions and 4 deletions

View File

@ -43,10 +43,7 @@ public static function uri()
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.