diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-06-04 23:48:35 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-06-04 23:48:35 +0000 |
commit | 52be1d0303ba825b93fd39fa42148a3fd34ea24e (patch) | |
tree | c0c993edd39f7e45332c4790237baa62d337430a /etc | |
parent | 3b617d7063cb01fd2305cc66afb3a01ae0732af1 (diff) | |
download | pfsense-52be1d0303ba825b93fd39fa42148a3fd34ea24e.zip pfsense-52be1d0303ba825b93fd39fa42148a3fd34ea24e.tar.gz |
Disable php_check_syntax() again, it has issues.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/filter.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 0401d2d..20a60ab 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -155,14 +155,14 @@ function filter_configure() { if(stristr($file, ".sh") == true) { mwexec("/usr/local/pkg/pf/" . $file . " start"); } else { - if(php_check_syntax($text, $error_message) == false) + //if(php_check_syntax($text, $error_message) == false) if($g['booting'] == true) echo "\t{$file}... "; eval($text); if($g['booting'] == true) echo "done.\n"; - else - echo "Error deteceted in {$file}: {$error_message}\n"; + //else + // echo "Error deteceted in {$file}: {$error_message}\n"; } } } |