mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix coding style part 2
This commit is contained in:
@@ -1,23 +1,18 @@
|
||||
<?php
|
||||
|
||||
if (device_permitted($entry['device_id']))
|
||||
{
|
||||
echo("<tr>");
|
||||
if (device_permitted($entry['device_id'])) {
|
||||
echo '<tr>';
|
||||
|
||||
// Stop shortening hostname. Issue #61
|
||||
//$entry['hostname'] = shorthost($entry['hostname'], 20);
|
||||
|
||||
if ($vars['page'] != "device")
|
||||
{
|
||||
echo("<td>" . $entry['date'] . "</td>");
|
||||
echo("<td><strong>".generate_device_link($entry)."</strong></td>");
|
||||
echo("<td><strong>" . $entry['program'] . " : </strong> " . htmlspecialchars($entry['msg']) . "</td>");
|
||||
} else {
|
||||
echo("<td><i>" . $entry['date'] . "</i> <strong>" . $entry['program'] . "</strong> " . htmlspecialchars($entry['msg']) . "</td>");
|
||||
}
|
||||
|
||||
echo("</tr>");
|
||||
// Stop shortening hostname. Issue #61
|
||||
// $entry['hostname'] = shorthost($entry['hostname'], 20);
|
||||
if ($vars['page'] != 'device') {
|
||||
echo '<td>'.$entry['date'].'</td>';
|
||||
echo '<td><strong>'.generate_device_link($entry).'</strong></td>';
|
||||
echo '<td><strong>'.$entry['program'].' : </strong> '.htmlspecialchars($entry['msg']).'</td>';
|
||||
}
|
||||
else {
|
||||
echo '<td><i>'.$entry['date'].'</i> <strong>'.$entry['program'].'</strong> '.htmlspecialchars($entry['msg']).'</td>';
|
||||
}
|
||||
|
||||
echo '</tr>';
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user