htmlentities used to show < and > in the log viewer
This commit is contained in:
parent
7141b05e4a
commit
a084cd421b
|
|
@ -241,7 +241,7 @@ if (permission_exists('log_view')) {
|
|||
//more firefox workaround...
|
||||
//echo "<p style=\"background-color:$background_color;color:$default_color;font-wieght:$default_type;font-family:$default_font\">";
|
||||
|
||||
$ary_output[] = "<font color=\"$default_color\" face=\"$default_font\">".$log_line."</font><br>";
|
||||
$ary_output[] = "<font color=\"$default_color\" face=\"$default_font\">".htmlentities($log_line)."</font><br>";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue