Browse Source

Even more refactoring on the request class.

Taylor Otwell 13 years ago
parent
commit
a26efbc2e3
1 changed files with 8 additions and 4 deletions
  1. 8 4
      system/request.php

+ 8 - 4
system/request.php

@@ -29,11 +29,15 @@ class Request {
 
 		$uri = static::raw_uri();
 
-		$base = parse_url(Config::get('application.url'), PHP_URL_PATH);
-
-		if (strpos($uri, $base) === 0) $uri = substr($uri, strlen($base));
+		if (strpos($uri, $base = parse_url(Config::get('application.url'), PHP_URL_PATH)) === 0)
+		{
+			$uri = substr($uri, strlen($base));
+		}
 
-		if (strpos($uri, $index = '/index.php') === 0) $uri = substr($uri, strlen($index));
+		if (strpos($uri, $index = '/index.php') === 0)
+		{
+			$uri = substr($uri, strlen($index));
+		}
 
 		return static::$uri = (($uri = trim($uri, '/')) == '') ? '/' : $uri;
 	}