From 0e90e3e0f39b8ece17d77a32b5bee94fa81aedf7 Mon Sep 17 00:00:00 2001 From: webchick Date: Fri, 4 Jan 2013 09:50:13 -0800 Subject: [PATCH] Issue #1874146 by fabpot: Fixed Moved Twig cache to its own directory. --- core/lib/Drupal/Core/Template/TwigEnvironment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Template/TwigEnvironment.php b/core/lib/Drupal/Core/Template/TwigEnvironment.php index 4e794e5dcb5..e10a1a913a5 100644 --- a/core/lib/Drupal/Core/Template/TwigEnvironment.php +++ b/core/lib/Drupal/Core/Template/TwigEnvironment.php @@ -105,7 +105,7 @@ class TwigEnvironment extends \Twig_Environment { */ protected function storage() { if (!isset($this->storage)) { - $this->storage = PhpStorageFactory::get('service_container'); + $this->storage = PhpStorageFactory::get('twig'); } return $this->storage; }