monitoring/show/history: pagination count

Fixes it as it didn't work, raised default row count to 50
This commit is contained in:
Thomas Gelf 2014-06-17 13:14:58 +00:00
parent 75a9640563
commit 304c7d146b

View File

@ -100,7 +100,7 @@ class Monitoring_ShowController extends Controller
//$this->view->object->populate(); //$this->view->object->populate();
$this->view->object->fetchEventHistory(); $this->view->object->fetchEventHistory();
$this->handleFormatRequest($this->view->object->eventhistory); $this->handleFormatRequest($this->view->object->eventhistory);
$this->view->history = $this->view->object->eventhistory->limit(20)->paginate(); $this->view->history = $this->view->object->eventhistory->paginate(50);
} }
public function servicesAction() public function servicesAction()