From e9734534c5ac41e36317a2cbd30a1c924d86070f Mon Sep 17 00:00:00 2001 From: Jan Pieper Date: Fri, 8 Jun 2012 16:20:22 +0300 Subject: [PATCH] [zendframework/ZendSkeletonApplication#67] fixed path to index.phtml (was introduced by: 87bd76e8) --- module/Application/config/module.config.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 13643b9..a52739c 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -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', -- 1.7.10.4