From 08ef564ee80c1c1cba7b6fb69618403e8e59727b Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Mon, 24 Feb 2014 16:41:12 -0800 Subject: [PATCH] CRM-14227 - add Order By Registration Date to Participant Listing report. ---------------------------------------- * CRM-14227: Enable sorting the participant listing report by register date http://issues.civicrm.org/jira/browse/CRM-14227 --- CRM/Report/Form/Event/ParticipantListing.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CRM/Report/Form/Event/ParticipantListing.php b/CRM/Report/Form/Event/ParticipantListing.php index 2eaa0568d2..c130a340fb 100644 --- a/CRM/Report/Form/Event/ParticipantListing.php +++ b/CRM/Report/Form/Event/ParticipantListing.php @@ -239,6 +239,11 @@ class CRM_Report_Form_Event_ParticipantListing extends CRM_Report_Form_Event { ), 'order_bys' => array( + 'participant_register_date' => + array('title' => ts('Registration Date'), + 'default_weight' => '1', + 'default_order' => 'ASC', + ), 'event_id' => array('title' => ts('Event'), 'default_weight' => '1', 'default_order' => 'ASC'), ), -- 2.25.1