From 88fefc2f950e506727155eb1bd9cb97277d31a51 Mon Sep 17 00:00:00 2001 From: eileen Date: Wed, 22 Jun 2016 19:59:42 +1200 Subject: [PATCH] CRM-17154 do not retain action in params --- CRM/Report/Form.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 9bd6402e55..bfe7f20700 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -4581,6 +4581,9 @@ LEFT JOIN civicrm_contact {$field['alias']} ON {$field['alias']}.id = {$this->_a FALSE, CRM_Utils_Array::value('task', $this->_params) )); + if (isset($this->_params['task'])) { + unset($this->_params['task']); + } if ($buttonName) { if ($buttonName == $this->_instanceButtonName) { -- 2.25.1