From: Dave Greenberg Date: Tue, 25 Feb 2014 00:41:12 +0000 (-0800) Subject: CRM-14227 - add Order By Registration Date to Participant Listing report. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=08ef564ee80c1c1cba7b6fb69618403e8e59727b;p=civicrm-core.git 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 --- 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'), ),