Fix service tooltip title

refs #8565
This commit is contained in:
Matthias Jentsch 2015-03-06 09:48:42 +01:00
parent cb0ca6d6ac
commit f425704305
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ use Icinga\Web\Url;
<?php
$i++;
if ($i > 5) {
$desc = $service->getHost()->getName() . ' on ' . $service->getName();
$desc = $service->getName() . ' on ' . $service->getHost()->getName();
$hidden[] = $desc;
$hiddenRich[] = sprintf("<div class='color-box badge-%s'></div>%s", $service->getStateText($service->service_state) ,$desc);
continue;