[Config] Missing type argument passed to loader.

In FileLoader the $type is not passed to the child loader.
This commit is contained in:
Benjamin Eberlei 2012-08-06 16:02:40 +02:00
parent 9a5e6c9081
commit b3cf36af9e
1 changed files with 1 additions and 1 deletions

View File

@ -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]);