Restore FrontController::InvokeAction().
authorRobert Sesek <rsesek@bluestatic.org>
Sun, 31 May 2015 21:20:55 +0000 (17:20 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sun, 31 May 2015 21:20:55 +0000 (17:20 -0400)
http/front_controller.php

index b84f29851247d4b08e130ed00b21ed07726500b4..d31f1ff0631ea6dce94021573d9c694964ffe34c 100644 (file)
@@ -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);
   }
 
   /*!