From 8376d08c0706e77c643636fad08bfbef4e662ed9 Mon Sep 17 00:00:00 2001 From: Neil Lathwood Date: Tue, 1 Nov 2016 18:05:24 +0000 Subject: [PATCH] fix: Updated syslog table to use display() for msg output (#4859) --- html/includes/table/syslog.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/includes/table/syslog.inc.php b/html/includes/table/syslog.inc.php index caa17aaab9..be75708fd5 100644 --- a/html/includes/table/syslog.inc.php +++ b/html/includes/table/syslog.inc.php @@ -72,7 +72,7 @@ foreach (dbFetchRows($sql, $param) as $syslog) { 'timestamp' => '
'.$syslog['date'].'
', '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']), ); }