Browse Source

fixed bug in request uri method.

Taylor Otwell 13 years ago
parent
commit
08ea1dbbc8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/request.php

+ 1 - 1
laravel/request.php

@@ -68,7 +68,7 @@ class Request {
 
 
 		$index = '/'.Config::$items['application']['index'];
 		$index = '/'.Config::$items['application']['index'];
 
 
-		if (trim($index) !== '' and strpos($uri, $index) === 0)
+		if (trim($index) !== '/' and strpos($uri, $index) === 0)
 		{
 		{
 			$uri = substr($uri, strlen($index));
 			$uri = substr($uri, strlen($index));
 		}
 		}