Browse Source

refactoring the uri class more.

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

+ 3 - 1
laravel/uri.php

@@ -40,7 +40,9 @@ class URI {
 	{
 		if ( ! is_null($this->uri)) return $this->uri;
 
-		return $this->uri = $this->format($this->clean(parse_url($this->server['REQUEST_URI'], PHP_URL_PATH)));
+		$uri = parse_url($this->server['REQUEST_URI'], PHP_URL_PATH);
+
+		return $this->uri = $this->format($this->clean($uri));
 	}
 
 	/**