From 95c757169dd6ad71e380af4992fa3d10ba4d9211 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Thu, 30 May 2013 16:43:40 +0200 Subject: [PATCH] Fix Twig cache directory path --- lib/Alchemy/Phrasea/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Alchemy/Phrasea/Application.php b/lib/Alchemy/Phrasea/Application.php index 5ecc285635..8d29579711 100644 --- a/lib/Alchemy/Phrasea/Application.php +++ b/lib/Alchemy/Phrasea/Application.php @@ -265,7 +265,7 @@ class Application extends SilexApplication $this->register(new TokensServiceProvider()); $this->register(new TwigServiceProvider(), array( 'twig.options' => array( - 'cache' => realpath(__DIR__ . '/../../../../../../tmp/cache_twig/'), + 'cache' => realpath(__DIR__ . '/../../../tmp/cache_twig/'), ), 'twig.form.templates' => array('login/common/form_div_layout.html.twig') ));