From: systopia Date: Fri, 6 Jun 2014 11:32:18 +0000 (+0200) Subject: order participant statuses by weighting X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=2acc3362b43accf5f615744eb00d6e723a7b9e6b;p=civicrm-core.git order participant statuses by weighting --- diff --git a/CRM/Event/BAO/Query.php b/CRM/Event/BAO/Query.php index 707e535b79..26b36a36bc 100644 --- a/CRM/Event/BAO/Query.php +++ b/CRM/Event/BAO/Query.php @@ -596,7 +596,6 @@ class CRM_Event_BAO_Query { CRM_Core_Form_Date::buildDateRange($form, 'event', 1, '_start_date_low', '_end_date_high', ts('From'), FALSE); $status = CRM_Event_PseudoConstant::participantStatus(NULL, NULL, 'label'); - asort($status); foreach ($status as $id => $Name) { $form->_participantStatus = &$form->addElement('checkbox', "participant_status_id[$id]", NULL, $Name); }