Avoid exec from appending to lines array.

This commit is contained in:
gfjardim
2018-08-24 12:14:21 -03:00
committed by GitHub
parent 6b713de2c9
commit ac3ca74a45

View File

@@ -29,5 +29,6 @@ foreach ($logs as $syslog) {
foreach ($match as $type) foreach ($type['text'] as $text) if (preg_match("/$text/i",$line)) {$span = "span class='{$type['class']}'"; break 2;}
echo "<$span>".htmlspecialchars($line)."\n</span>";
}
unset($lines);
}
?>