Fix syslog select2 theme (#9248)

Wrong one :/
htmlentities the rest...
This commit is contained in:
Tony Murray
2018-09-21 08:22:15 -05:00
committed by GitHub
parent f81552e1c1
commit 5bf4ca2b6c
2 changed files with 9 additions and 3 deletions

View File

@ -86,11 +86,11 @@ class SyslogController extends TableController
return [
'timestamp' => $syslog->timestamp,
'level' => $syslog->level,
'level' => htmlentities($syslog->level),
'device_id' => $device ? \LibreNMS\Util\Url::deviceLink($device, $device->shortDisplayName()) : '',
'program' => htmlentities($syslog->program),
'msg' => htmlentities($syslog->msg),
'priority' => $syslog->priority,
'priority' => htmlentities($syslog->priority),
];
}
}

File diff suppressed because one or more lines are too long