[zendframework/ZendSkeletonApplication#67] fixed path to index.phtml (was introduced...
authorJan Pieper <kontakt@jan-pieper.info>
Fri, 8 Jun 2012 13:20:22 +0000 (16:20 +0300)
committerJan Pieper <kontakt@jan-pieper.info>
Fri, 8 Jun 2012 13:20:22 +0000 (16:20 +0300)
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',