From 133fde9e7d13d0b9a1f6bed75169402386105b7b Mon Sep 17 00:00:00 2001 From: Christian Wach <needle@haystack.co.uk> Date: Mon, 16 Sep 2019 11:19:30 +0100 Subject: [PATCH] Use helper method for collecting Dashlet IDs Signed-off-by: Kevin Cristiano <kcristiano@kcristiano.com> --- civicrm/CRM/Core/BAO/Dashboard.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/civicrm/CRM/Core/BAO/Dashboard.php b/civicrm/CRM/Core/BAO/Dashboard.php index be9db756fc..99dff8f057 100644 --- a/civicrm/CRM/Core/BAO/Dashboard.php +++ b/civicrm/CRM/Core/BAO/Dashboard.php @@ -367,9 +367,7 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard { // Get the array of IDs. $domainDashletIDs = []; if ($domainDashlets['is_error'] == 0) { - foreach ($domainDashlets['values'] as $domainDashlet) { - $domainDashletIDs[] = $domainDashlet['id']; - } + $domainDashletIDs = CRM_Utils_Array::collect('id', $domainDashlets['values']); } // Restrict query to Dashlets in this domain. -- GitLab