Do not filter for `contactgroup' in case the concrete group name is known

refs #8613
This commit is contained in:
Johannes Meyer 2015-04-10 12:14:47 +02:00
parent 71c013178e
commit 5ec4919aa6
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ if (! empty($object->contactgroups)) {
$list[] = $this->qlink(
$contactgroup->contactgroup_alias,
'monitoring/list/contactgroups',
array('contactgroup' => $contactgroup->contactgroup_name),
array('contactgroup_name' => $contactgroup->contactgroup_name),
array('title' => sprintf($this->translate('List contacts in contact-group "%s"'), $contactgroup->contactgroup_alias))
);
}