Merge branch 'bugfix/hostgroup-link-7259'

fixes #7259
This commit is contained in:
Eric Lippmann 2014-12-30 10:20:44 +01:00
commit 59c39e94db
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@
</td> </td>
<?php endif ?> <?php endif ?>
<td class="groupname"> <td class="groupname">
<a href="<?= $this->href('monitoring/list/services', array('hostgroup' => $h->hostgroup)); ?>"> <a href="<?= $this->href('monitoring/list/hosts', array('hostgroup' => $h->hostgroup)); ?>">
<?= $h->hostgroup; ?> <?= $h->hostgroup; ?>
</a> </a>
</td> </td>

View File

@ -4,7 +4,7 @@ if (empty($object->hostgroups)) return;
$list = array(); $list = array();
foreach ($object->hostgroups as $name => $alias) { foreach ($object->hostgroups as $name => $alias) {
$list[] = $this->qlink($alias, 'monitoring/list/services', array( $list[] = $this->qlink($alias, 'monitoring/list/hosts', array(
'hostgroup' => $name 'hostgroup' => $name
)); ));
} }