mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fix: incorrect hostname in the mouse-over of the services in the availability-map #5734
This commit is contained in:
committed by
Neil Lathwood
parent
cb5dd299af
commit
27417f72ad
@@ -295,7 +295,7 @@ if (defined('SHOW_SETTINGS')) {
|
||||
$serviceLabel .= ' widget-availability-fixed';
|
||||
}
|
||||
$temp_output[] = '
|
||||
<a href="' . generate_url(array('page' => 'device', 'tab' => 'services', 'device' => $service['device_id'])) . '" title="' . shorthost(ip_to_sysname($device, $device['hostname'])) . " - " . $service['service_type'] . " - " . $service['service_desc'] . '">
|
||||
<a href="' . generate_url(array('page' => 'device', 'tab' => 'services', 'device' => $service['device_id'])) . '" title="' . shorthost(ip_to_sysname($service, $service['hostname'])) . " - " . $service['service_type'] . " - " . $service['service_desc'] . '">
|
||||
<span class="label ' . $serviceLabel . ' widget-availability label-font-border">' . $serviceText . '</span>
|
||||
</a>';
|
||||
}
|
||||
|
Reference in New Issue
Block a user