Skip to content
Snippets Groups Projects
Commit 14aa9e92 authored by yashodha's avatar yashodha
Browse files

(#705) Disabling Alphabetical Pager is not respected for events

parent cb64a05a
No related branches found
No related tags found
No related merge requests found
......@@ -314,7 +314,10 @@ class CRM_Event_Page_ManageEvent extends CRM_Core_Page {
$this->_searchResult = CRM_Utils_Request::retrieve('searchResult', 'Boolean', $this);
$whereClause = $this->whereClause($params, FALSE, $this->_force);
$this->pagerAToZ($whereClause, $params);
if (CRM_Core_Config::singleton()->includeAlphabeticalPager) {
$this->pagerAToZ($whereClause, $params);
}
$params = [];
$whereClause = $this->whereClause($params, TRUE, $this->_force);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment