Browse Source

fix 404 route issue.

Taylor Otwell 13 years ago
parent
commit
d681f49920
1 changed files with 8 additions and 5 deletions
  1. 8 5
      laravel/laravel.php

+ 8 - 5
laravel/laravel.php

@@ -161,15 +161,18 @@ if (count(URI::$segments) > 15)
 
 Request::$route = Routing\Router::route(Request::method(), URI::current());
 
-if ( ! is_null(Request::$route))
-{
-	$response = Request::$route->call();
-}
-else
+if (is_null(Request::$route))
 {
+	Request::$route = new Routing\Route('GET /404', array(function()
+	{
+		return Response::error('404');
+	}));
+
 	$response = Response::error('404');
 }
 
+$response = Request::$route->call();
+
 /**
  * Close the session and write the active payload to persistent
  * storage. The session cookie will also be written and if the