1
0
Fork 0

ArrayLoader should not use require content for all other properties

pull/37/head
Igor Wiedler 2011-09-30 18:05:28 +02:00
parent 9cbd74bf90
commit 2c1605925b
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class ArrayLoader
if (isset($config[$type])) {
$method = 'set'.ucfirst($description);
$package->{$method}(
$this->loadLinksFromConfig($package->getName(), $description, $config['require'])
$this->loadLinksFromConfig($package->getName(), $description, $config[$type])
);
}
}