Skip to content

Commit

Permalink
Alertsummary: Fix that the limiter does not have any effect ...
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
Johannes Meyer committed Oct 1, 2015
1 parent 378be3f commit 98f2da8
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -86,6 +86,11 @@ public function indexAction()
$this->view->notificationsUrl = 'monitoring/list/notifications';

$this->setupLimitControl();
if (($limit = $this->params->get('limit'))) {
$query->limit($limit);
} else {
$query->limit(25);
}
}

/**
Expand Down

0 comments on commit 98f2da8

Please sign in to comment.