mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fix syntax error
This commit is contained in:
parent
2b641a08ab
commit
56bd203593
@ -614,7 +614,7 @@ function dump_clog($logfile, $tail, $withorig = true, $grepfor = "", $grepinvert
|
||||
$grepline .= " | /usr/bin/egrep -v " . escapeshellarg(implode("|", $grepinvert));
|
||||
if (is_dir($logfile)) {
|
||||
$logarr = array("File $logfile is a directory.");
|
||||
} elsif(file_exists($logfile) && filesize($logfile) == 0) {
|
||||
} elseif (file_exists($logfile) && filesize($logfile) == 0) {
|
||||
$logarr = array("Log file started.");
|
||||
} else {
|
||||
if($config['system']['disablesyslogclog']) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user