Add proper titles to the servicegroups component view

refs #8458
This commit is contained in:
Johannes Meyer 2015-02-23 17:28:20 +01:00
parent 7247ea5191
commit 18f6ff8702
1 changed files with 6 additions and 3 deletions

View File

@ -4,9 +4,12 @@ if (empty($object->servicegroups)) return;
$list = array();
foreach ($object->servicegroups as $name => $alias) {
$list[] = $this->qlink($alias, 'monitoring/list/services', array(
'servicegroup' => $name
));
$list[] = $this->qlink(
$alias,
'monitoring/list/services',
array('servicegroup' => $name),
array('title' => sprintf($this->translate('List all services in the group "%s"'), $alias))
);
}
printf(