Browse Source

Update laravel/uri.php

Taylor Otwell 13 years ago
parent
commit
6bd3dcb039
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/uri.php

+ 2 - 2
laravel/uri.php

@@ -44,9 +44,9 @@ class URI {
 		// Format the final request URI. If there is nothing left, we will just
 		// return a single forward slash. Otherwise, we'll remove all of the
 		// leading and trailing spaces from the URI before returning it.
-		static::$uri = $uri = static::format($uri);
+		static::$uri = static::format($uri);
 
-		static::$segments = explode('/', $uri);
+		static::$segments = explode('/', static::$uri);
 
 		return static::$uri;
 	}