Merge pull request #69 from janpieper/patch-1
authorEvan Coury <me@evancoury.com>
Wed, 13 Jun 2012 12:44:44 +0000 (05:44 -0700)
committerEvan Coury <me@evancoury.com>
Wed, 13 Jun 2012 12:44:44 +0000 (05:44 -0700)
wrong view file mapping

module/Application/config/module.config.php

index 13643b9..a52739c 100644 (file)
@@ -40,10 +40,10 @@ return array(
         'not_found_template'       => 'error/404',
         'exception_template'       => 'error/index',
         'template_map' => array(
-            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
-            'index/index'   => __DIR__ . '/../view/index/index.phtml',
-            'error/404'     => __DIR__ . '/../view/error/404.phtml',
-            'error/index'   => __DIR__ . '/../view/error/index.phtml',
+            'layout/layout'           => __DIR__ . '/../view/layout/layout.phtml',
+            'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
+            'error/404'               => __DIR__ . '/../view/error/404.phtml',
+            'error/index'             => __DIR__ . '/../view/error/index.phtml',
         ),
         'template_path_stack' => array(
             __DIR__ . '/../view',