Merge pull request #1205 from SaaldjorMike/syslog-name

Fix heading of syslog table for devices
This commit is contained in:
Neil Lathwood 2015-06-07 21:32:33 +01:00
commit 70c9d13544

View File

@ -44,7 +44,7 @@ $sql = "SELECT *, DATE_FORMAT(timestamp, '%Y-%m-%d %T') AS date from syslog WHE
$sql .= " ORDER BY timestamp DESC LIMIT 1000";
echo(' <div class="panel panel-default panel-condensed">
<div class="panel-heading">
<strong>Eventlog entries</strong>
<strong>Syslog entries</strong>
</div>
<table class="table table-hover table-condensed table-striped">');
foreach (dbFetchRows($sql, $param) as $entry) { include("includes/print-syslog.inc.php"); }