diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-09-16 20:43:53 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-09-16 20:43:53 +0000 |
commit | 75abff95c9adfad0cdc9528d5bd3d8710c3e883c (patch) | |
tree | 526c347ec29f39981b53f0c22d97b3f8a8fbffc2 /usr/local/www | |
parent | 012472a4005a0333b1113dd2f06ae316d646fc93 (diff) | |
download | pfsense-75abff95c9adfad0cdc9528d5bd3d8710c3e883c.zip pfsense-75abff95c9adfad0cdc9528d5bd3d8710c3e883c.tar.gz |
Don't try to filter records that have strange date / time stamps.
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/guiconfig.inc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/usr/local/www/guiconfig.inc b/usr/local/www/guiconfig.inc index bad1d20..9ce52f1 100755 --- a/usr/local/www/guiconfig.inc +++ b/usr/local/www/guiconfig.inc @@ -581,8 +581,6 @@ function dump_clog($logfile, $tail, $withorig = true, $grepfor = "", $grepinvert echo "<tr valign=\"top\">\n"; if ($withorig) { $entry_date_time = htmlspecialchars(join(" ", array_slice($logent, 0, 3))); - if(strlen($entry_date_time) > 17) - continue; echo "<td class=\"listlr\" nowrap>" . $entry_date_time . "</td>\n"; echo "<td class=\"listr\">" . htmlspecialchars($logent[4] . " " . $logent[5]) . "</td>\n"; } else { |