From fdfaa2976ccaa84192cd832be8f94ce350afd72d Mon Sep 17 00:00:00 2001 From: eileen Date: Tue, 4 Dec 2018 17:20:47 +1300 Subject: [PATCH] Fix typo from https://github.com/civicrm/civicrm-core/pull/13210 Looks like I tabbed it out without noticing the wrong param --- CRM/Case/Form/Search.php | 2 +- CRM/Event/Form/Search.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Case/Form/Search.php b/CRM/Case/Form/Search.php index 810ea11f76..bd5544e44b 100644 --- a/CRM/Case/Form/Search.php +++ b/CRM/Case/Form/Search.php @@ -90,7 +90,7 @@ class CRM_Case_Form_Search extends CRM_Core_Form_Search { $this->defaults = array(); $this->getUrlVariables(); - $this->getFormValues(); + $this->getFormVariables(); if ($this->_force) { $this->postProcess(); diff --git a/CRM/Event/Form/Search.php b/CRM/Event/Form/Search.php index 04291cf146..9f3ee026e6 100644 --- a/CRM/Event/Form/Search.php +++ b/CRM/Event/Form/Search.php @@ -91,7 +91,7 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search { $this->defaults = array(); $this->getUrlVariables(); - $this->getFormValues(); + $this->getFormVariables(); if ($this->_force) { $this->postProcess(); -- 2.25.1