Explorar el Código

[Config] Missing type argument passed to loader.

In FileLoader the $type is not passed to the child loader.
Benjamin Eberlei hace 12 años
padre
commit
b3cf36af9e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Symfony/Component/Config/Loader/FileLoader.php

+ 1 - 1
src/Symfony/Component/Config/Loader/FileLoader.php

@@ -72,7 +72,7 @@ abstract class FileLoader extends Loader
             }
             self::$loading[$resource] = true;
 
-            $ret = $loader->load($resource);
+            $ret = $loader->load($resource, $type);
 
             unset(self::$loading[$resource]);