Bläddra i källkod

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

Jonathan Ingram 13 år sedan
förälder
incheckning
7827f72cf4
1 ändrade filer med 2 tillägg och 0 borttagningar
  1. 2 0
      src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php

+ 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();