From b2d8fcb883c5e717a300fdb1615ca98b75ba80c0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Frank=20J=2E=20G=C3=B3mez?= Date: Fri, 29 May 2015 17:11:32 -0400 Subject: [PATCH] CRM-16592: For the fee label filter on the participant listing report, show the price field label in addition to the event title and the price field value label. --- CRM/Report/Form/Event/ParticipantListing.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form/Event/ParticipantListing.php b/CRM/Report/Form/Event/ParticipantListing.php index 4822876e3a..b0947731eb 100644 --- a/CRM/Report/Form/Event/ParticipantListing.php +++ b/CRM/Report/Form/Event/ParticipantListing.php @@ -441,7 +441,7 @@ class CRM_Report_Form_Event_ParticipantListing extends CRM_Report_Form_Event { */ public function getPriceLevels() { $query = " -SELECT CONCAT(cv.label, ' (', ps.title, ')') label, cv.id +SELECT CONCAT(cv.label, ' (', ps.title, ' - ', cf.label , ')') label, cv.id FROM civicrm_price_field_value cv LEFT JOIN civicrm_price_field cf ON cv.price_field_id = cf.id -- 2.25.1