Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
eb0e1202
Commit
eb0e1202
authored
Nov 04, 2011
by
latham
Browse files
Special Char issues with logs. I really think I have submitted this one fix several times.
parent
fd72ba47
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/monitor/show_log.php
View file @
eb0e1202
...
...
@@ -124,7 +124,7 @@ $record = $app->db->queryOneRecord("SELECT data, state FROM monitor_data WHERE t
if
(
isset
(
$record
[
'data'
]))
{
$data
=
unserialize
(
$record
[
'data'
]);
$logData
=
nl2br
(
$data
);
$logData
=
nl2br
(
htmlspecialchars
(
$data
)
)
;
$app
->
tpl
->
setVar
(
"log_data"
,
$logData
);
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment