From a4fc6dedea2d57023c5c224e6fc695757340b53d Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 26 Jun 2014 16:34:37 +0200 Subject: [PATCH] monitoring/list: fix limit=0 check This used to be fixed, but got accidentally re-broken by last commit this night. --- .../monitoring/application/controllers/ListController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/monitoring/application/controllers/ListController.php b/modules/monitoring/application/controllers/ListController.php index 8ab94a6fa..b5ecafbba 100644 --- a/modules/monitoring/application/controllers/ListController.php +++ b/modules/monitoring/application/controllers/ListController.php @@ -199,11 +199,11 @@ class Monitoring_ListController extends Controller )); $limit = $this->params->get('limit'); $this->view->limit = $limit; - if ($limit) { + if ($limit === 0) { + $this->view->services = $query->getQuery()->fetchAll(); + } else { // TODO: Workaround, paginate should be able to fetch limit from new params $this->view->services = $query->paginate($this->params->get('limit')); - } else { - $this->view->services = $query->getQuery()->fetchAll(); } }