mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fix: Updated syslog table to use display() for msg output (#4859)
This commit is contained in:
committed by
Daniel Preussker
co-authored by
Daniel Preussker
parent
4a854e02ce
commit
8376d08c07
@@ -72,7 +72,7 @@ foreach (dbFetchRows($sql, $param) as $syslog) {
|
||||
'timestamp' => '<div style="white-space:nowrap;">'.$syslog['date'].'</div>',
|
||||
'device_id' => generate_device_link($dev, shorthost($dev['hostname'])),
|
||||
'program' => $syslog['program'],
|
||||
'msg' => htmlspecialchars($syslog['msg']),
|
||||
'msg' => display($syslog['msg']),
|
||||
'status' => generate_priority_status($syslog['priority']),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user