From 5c3a5105c0e7bfb2237b061981c2c34d2dfca7b3 Mon Sep 17 00:00:00 2001 From: David Bwire Date: Fri, 25 Jul 2014 15:55:37 +0300 Subject: [PATCH] Update module.config.php With the change when the user navigates to the home page then instead of the IndexController of the application module being loaded the NoticeController of the Notice module is loaded. --- module/Application/config/module.config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 0ed77c0..2b637ea 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -15,7 +15,7 @@ 'options' => array( 'route' => '/', 'defaults' => array( - 'controller' => 'Application\Controller\Index', + 'controller' => 'Notice\Controller\NoticeController', 'action' => 'index', ), ),