diff --git a/modules/monitoring/application/controllers/AlertsummaryController.php b/modules/monitoring/application/controllers/AlertsummaryController.php index 242170b7f..f8d37e715 100644 --- a/modules/monitoring/application/controllers/AlertsummaryController.php +++ b/modules/monitoring/application/controllers/AlertsummaryController.php @@ -86,6 +86,11 @@ class AlertsummaryController extends Controller $this->view->notificationsUrl = 'monitoring/list/notifications'; $this->setupLimitControl(); + if (($limit = $this->params->get('limit'))) { + $query->limit($limit); + } else { + $query->limit(25); + } } /**