From aa03bde1c6369d6ec2c5f5031c64c6815a8b8605 Mon Sep 17 00:00:00 2001 From: Tim Steiner <tsteiner2@unl.edu> Date: Wed, 25 Jun 2008 14:57:29 +0000 Subject: [PATCH] Switch the last of the Controllers to inherit from App_ instead of Unl_Controller_Action --- application/modules/auth/controllers/IndexController.php | 2 +- application/modules/default/controllers/IndexController.php | 2 +- application/modules/requests/controllers/IndexController.php | 2 +- application/modules/test/controllers/IndexController.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/application/modules/auth/controllers/IndexController.php b/application/modules/auth/controllers/IndexController.php index 1c01a78c..9091131d 100644 --- a/application/modules/auth/controllers/IndexController.php +++ b/application/modules/auth/controllers/IndexController.php @@ -9,7 +9,7 @@ require_once 'Zend/Controller/Action.php'; -class Auth_IndexController extends Unl_Controller_Action { +class Auth_IndexController extends App_Controller_Action { public function indexAction() { diff --git a/application/modules/default/controllers/IndexController.php b/application/modules/default/controllers/IndexController.php index eb0aab9f..96eac246 100644 --- a/application/modules/default/controllers/IndexController.php +++ b/application/modules/default/controllers/IndexController.php @@ -1,5 +1,5 @@ <?php -class IndexController extends Unl_Controller_Action +class IndexController extends App_Controller_Action { public function indexAction() { diff --git a/application/modules/requests/controllers/IndexController.php b/application/modules/requests/controllers/IndexController.php index 610c4b8b..47a62c3c 100644 --- a/application/modules/requests/controllers/IndexController.php +++ b/application/modules/requests/controllers/IndexController.php @@ -9,7 +9,7 @@ require_once 'Zend/Controller/Action.php'; -class Requests_IndexController extends Unl_Controller_Action +class Requests_IndexController extends App_Controller_Action { /** * The default action - show the home page diff --git a/application/modules/test/controllers/IndexController.php b/application/modules/test/controllers/IndexController.php index 9ee34a56..e9b84c01 100644 --- a/application/modules/test/controllers/IndexController.php +++ b/application/modules/test/controllers/IndexController.php @@ -9,7 +9,7 @@ require_once 'Zend/Controller/Action.php'; -class Test_IndexController extends Unl_Controller_Action { +class Test_IndexController extends App_Controller_Action { /** * The default action - show the home page */ -- GitLab