Remove one extra htmlentities to fix the color formatting of the log viewer.

This commit is contained in:
Mark Crane
2013-08-21 18:34:01 +00:00
parent c1bf255d62
commit ba7971da37

View File

@@ -249,7 +249,7 @@ if (permission_exists('log_view')) {
$log_line = str_replace($v1["pattern".$i], "<font color=\"{$v1["color".$i]}\">{$v1["pattern".$i]}</font>", htmlentities($log_line));
}
}
$ary_output[] = "<font color=\"{$v1[color]}\" face=\"{$v1[font]}\">".htmlentities($log_line)."</font><br>";
$ary_output[] = "<font color=\"{$v1[color]}\" face=\"{$v1[font]}\">".$log_line."</font><br>";
$noprint = true;
}
}