diff --git a/CRM/Event/Page/ManageEvent.php b/CRM/Event/Page/ManageEvent.php index afc523e0347e..1a316ef657d6 100644 --- a/CRM/Event/Page/ManageEvent.php +++ b/CRM/Event/Page/ManageEvent.php @@ -314,7 +314,10 @@ public function browse() { $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);