From b1ed9cf58083c48409f4d33923657eb8dc0ec70d Mon Sep 17 00:00:00 2001 From: Eric Date: Sat, 30 Jun 2012 21:28:04 +0200 Subject: [PATCH] Fixed ActionController name. --- .../Application/src/Application/Controller/IndexController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/Application/src/Application/Controller/IndexController.php b/module/Application/src/Application/Controller/IndexController.php index fa1103b..1c547c5 100644 --- a/module/Application/src/Application/Controller/IndexController.php +++ b/module/Application/src/Application/Controller/IndexController.php @@ -2,10 +2,10 @@ namespace Application\Controller; -use Zend\Mvc\Controller\ActionController, - Zend\View\Model\ViewModel; +use Zend\Mvc\Controller\AbstractActionController; +use Zend\View\Model\ViewModel; -class IndexController extends ActionController +class IndexController extends AbstractActionController { public function indexAction() { -- 1.7.10.4