From 3ea86448cc10a21fdead4c53d7690d26e4998b15 Mon Sep 17 00:00:00 2001 From: John Kirk Date: Thu, 24 Aug 2017 23:42:31 +0000 Subject: [PATCH] Reverted change to place info requires in an array. --- CRM/Extension/Manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Extension/Manager.php b/CRM/Extension/Manager.php index 3306908dee94..013c9aa9a03b 100644 --- a/CRM/Extension/Manager.php +++ b/CRM/Extension/Manager.php @@ -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());