From: John Kirk Date: Thu, 24 Aug 2017 23:42:31 +0000 (+0000) Subject: Reverted change to place info requires in an array. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3ea86448cc10a21fdead4c53d7690d26e4998b15;p=civicrm-core.git Reverted change to place info requires in an array. --- diff --git a/CRM/Extension/Manager.php b/CRM/Extension/Manager.php index 3306908dee..013c9aa9a0 100644 --- a/CRM/Extension/Manager.php +++ b/CRM/Extension/Manager.php @@ -614,7 +614,7 @@ class CRM_Extension_Manager { } 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());