浏览代码

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

Jonathan Ingram 13 年之前
父节点
当前提交
7827f72cf4
共有 1 个文件被更改,包括 2 次插入0 次删除
  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();