From 77f60b00f57222b32b39afb30d5b34065453146e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Frank=20J=2E=20G=C3=B3mez?= Date: Fri, 15 May 2015 09:24:11 -0400 Subject: [PATCH] CRM-16477: Compliance with code style standards. --- CRM/Report/Form/Event/Summary.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Report/Form/Event/Summary.php b/CRM/Report/Form/Event/Summary.php index fde7c4a822..07548cfbf6 100644 --- a/CRM/Report/Form/Event/Summary.php +++ b/CRM/Report/Form/Event/Summary.php @@ -162,8 +162,8 @@ class CRM_Report_Form_Event_Summary extends CRM_Report_Form_Event { } } if (!empty($this->_params['id_value'])) { - $id_value = is_array($this->_params['id_value']) ? implode(',', $this->_params['id_value']) : $this->_params['id_value']; - $this->_participantWhere = " AND civicrm_participant.event_id IN ( {$id_value} ) "; + $idValue = is_array($this->_params['id_value']) ? implode(',', $this->_params['id_value']) : $this->_params['id_value']; + $this->_participantWhere = " AND civicrm_participant.event_id IN ( $idValue ) "; } if (!empty($clause)) { -- 2.25.1