Browse Source

continuing to refactor the uri class.

Taylor Otwell 13 years ago
parent
commit
415cb0fe12
1 changed files with 3 additions and 8 deletions
  1. 3 8
      laravel/uri.php

+ 3 - 8
laravel/uri.php

@@ -32,7 +32,8 @@ class URI {
 	 *
 	 * If the request is to the root of the application, a single forward slash
 	 * will be returned. Otherwise, the URI will be returned with all leading
-	 * and trailing slashes removed.
+	 * and trailing slashes removed. The application URL and index file will
+	 * also be removed since they are not used when routing the request.
 	 *
 	 * @return string
 	 */
@@ -40,18 +41,12 @@ class URI {
 	{
 		if ( ! is_null($this->uri)) return $this->uri;
 
-		$uri = parse_url($this->server['REQUEST_URI'], PHP_URL_PATH);
-
-		return $this->uri = $this->format($this->clean($uri));
+		return $this->uri = $this->format($this->clean(parse_url($this->server['REQUEST_URI'], PHP_URL_PATH)));
 	}
 
 	/**
 	 * Remove extraneous information from the given request URI.
 	 *
-	 * The application URL will be removed, as well as the application index file
-	 * and the request format. None of these things are used when routing the
-	 * request to a closure or controller, so they can be safely removed.
-	 *
 	 * @param  string  $uri
 	 * @return string
 	 */