Browse Source

use response::error in front controller.

Taylor Otwell 13 years ago
parent
commit
829088f3d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/index.php

+ 1 - 1
public/index.php

@@ -152,7 +152,7 @@ if (is_null($response))
 {
 	$route = System\Routing\Router::make(Request::method(), Request::uri(), new System\Routing\Loader)->route();
 
-	$response = (is_null($route)) ? System\Response::make(System\View::make('error/404'), 404) : $route->call();
+	$response = (is_null($route)) ? System\Response::error('404') : $route->call();
 }
 else
 {