From db920ccbd814f3068a7447f2f28673d437007bd4 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 31 May 2015 17:26:17 -0400 Subject: [PATCH] NotFoundInterceptor needs to permit a NULL Action. --- http/not_found_interceptor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/not_found_interceptor.php b/http/not_found_interceptor.php index a49fd41..31f0fa4 100644 --- a/http/not_found_interceptor.php +++ b/http/not_found_interceptor.php @@ -22,7 +22,7 @@ require_once HOPLITE_ROOT . '/http/response_code.php'; class NotFoundInterceptor implements Interceptor { public function DoIntercept(FrontController $controller, - Action $action, + Action $action = NULL, Request $request, Response $response) { -- 2.22.5