Jelajahi Sumber

Fixes #2817: ensure that the base loader is correctly initialised

Jonathan Ingram 13 tahun lalu
induk
melakukan
7827f72cf4

+ 2 - 0
src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php

@@ -33,6 +33,8 @@ class FilesystemLoader extends \Twig_Loader_Filesystem
      */
     public function __construct(FileLocatorInterface $locator, TemplateNameParserInterface $parser)
     {
+        parent::__construct(array());
+
         $this->locator = $locator;
         $this->parser = $parser;
         $this->cache = array();