librenms-librenms/includes/html/print-syslog.inc.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
731 B
PHP
Raw Normal View History

<?php
if (device_permitted($entry['device_id'])) {
$syslog_output .= '<tr>';
// Stop shortening hostname. Issue #61
// $entry['hostname'] = shorthost($entry['hostname'], 20);
if ($vars['page'] != 'device') {
$syslog_output .= '<td>' . $entry['date'] . '</td>
<td><strong>' . generate_device_link($entry) . '</strong></td>
2016-02-17 13:59:58 +00:00
<td><strong>' . $entry['program'] . ' : </strong> ' . htmlspecialchars($entry['msg']) . '</td>';
} else {
2016-02-17 13:59:58 +00:00
$syslog_output .= '<td><i>' . $entry['date'] . '</i>&nbsp;&nbsp;&nbsp;<strong>' . $entry['program'] . '</strong>&nbsp;&nbsp;&nbsp;' . htmlspecialchars($entry['msg']) . '</td>';
}
$syslog_output .= '</tr>';
}