From 942cf6ea57cb8bc167e51e93684a43b7bde5479b Mon Sep 17 00:00:00 2001 From: Brian Shaughnessy Date: Wed, 10 May 2017 12:30:26 -0400 Subject: [PATCH] CRM-20549 also remove limit in getLocationEvents --- CRM/Event/BAO/Event.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Event/BAO/Event.php b/CRM/Event/BAO/Event.php index a261c077eb..8fa666d632 100644 --- a/CRM/Event/BAO/Event.php +++ b/CRM/Event/BAO/Event.php @@ -1889,6 +1889,9 @@ WHERE id = $cfID 'check_permissions' => TRUE, 'return' => $ret, 'loc_block_id.address_id' => array('IS NOT NULL' => 1), + 'options' => array( + 'limit' => 0, + ), )); foreach ($result['values'] as $event) { -- 2.25.1