Skip to content

Commit

Permalink
Reverted change to place info requires in an array.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnFF committed Oct 9, 2017
1 parent 318f234 commit 3ea8644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Extension/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ public function findInstallRequirements($keys) {
}
elseif ($info && $info->requires) {
$sorter->add($key, $info->requires);
$todoKeys = array_merge($todoKeys, array($info->requires));
$todoKeys = array_merge($todoKeys, $info->requires);
}
else {
$sorter->add($key, array());
Expand Down

0 comments on commit 3ea8644

Please sign in to comment.