Skip to content

Commit

Permalink
monitoring: Fix pagination of the host group overview
Browse files Browse the repository at this point in the history
refs #9009
  • Loading branch information
lippserd committed Jun 5, 2015
1 parent 7b17626 commit 480becd
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -112,7 +112,8 @@ protected function joinBaseTables()
);
$this->subQueries[] = $services;
$this->summaryQuery = $this->db->select()->union(array($hosts, $services), Zend_Db_Select::SQL_UNION_ALL);
$this->select->from(array('statussummary' => $this->summaryQuery), array())->group('hostgroup_name');
$this->select->from(array('statussummary' => $this->summaryQuery), array());
$this->group('hostgroup_name');
$this->joinedVirtualTables['hoststatussummary'] = true;
}

Expand Down

0 comments on commit 480becd

Please sign in to comment.