From ec85e0cfb245fa1f2e76a60723e688e0f257bc80 Mon Sep 17 00:00:00 2001 From: Alain Benbassat Date: Thu, 23 May 2019 22:55:53 +0200 Subject: [PATCH] corrects test on empty formvalues in postProcess --- CRM/Event/Form/Search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Event/Form/Search.php b/CRM/Event/Form/Search.php index 15451b2d20..3f7af06118 100644 --- a/CRM/Event/Form/Search.php +++ b/CRM/Event/Form/Search.php @@ -389,7 +389,7 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search { CRM_Contact_BAO_Query::processSpecialFormValue($this->_formValues, ['participant_status_id']); } - if (empty($this->_formValues)) { + if (empty($formValues)) { $formValues = $this->controller->exportValues($this->_name); } -- 2.25.1