From dde46188cf710ef8aa053f580238dbbe20a8f42e Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 31 May 2015 17:20:55 -0400 Subject: [PATCH] Restore FrontController::InvokeAction(). --- http/front_controller.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/http/front_controller.php b/http/front_controller.php index b84f298..d31f1ff 100644 --- a/http/front_controller.php +++ b/http/front_controller.php @@ -173,7 +173,15 @@ class FrontController $interceptor->DoIntercept($this, $action, $request, $this->response); if ($action) - $action->Invoke($request, $this->response); + $this->InvokeAction($action); + } + + /*! + Invokes the action with the Controller's request and response objects. + */ + public function InvokeAction(Action $action) + { + $action->Invoke($this->request, $this->response); } /*! -- 2.22.5