Skip to content

Commit

Permalink
Fix service tooltip title
Browse files Browse the repository at this point in the history
refs #8565
  • Loading branch information
majentsch committed Mar 6, 2015
1 parent cb0ca6d commit f425704
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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;
Expand Down

0 comments on commit f425704

Please sign in to comment.