mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
22 lines
393 B
PHP
22 lines
393 B
PHP
|
<?php
|
||
|
|
||
|
$hostname = gethostbyid($alert_entry['device_id']);
|
||
|
|
||
|
echo('<tr>
|
||
|
<td>
|
||
|
' . $alert_entry['time_logged'] . '
|
||
|
</td>');
|
||
|
|
||
|
if (!isset($alert_entry['device'])) {
|
||
|
$dev = device_by_id_cache($alert_entry['device_id']);
|
||
|
echo("<td>
|
||
|
" . generate_device_link($dev, shorthost($dev['hostname'])) . "
|
||
|
</td>");
|
||
|
}
|
||
|
|
||
|
echo("<td>".htmlspecialchars($alert_entry['name']) . "</td>
|
||
|
|
||
|
</tr>");
|
||
|
|
||
|
?>
|