diff options
author | Phil Davis <phil.davis@world.inf.org> | 2014-02-19 04:53:48 -0800 |
---|---|---|
committer | Phil Davis <phil.davis@world.inf.org> | 2014-02-19 04:53:48 -0800 |
commit | 0c8cc91517e200aba1cea0079a135e3c8da5b9a2 (patch) | |
tree | bf2afc0ca9d317d151bd841e4fc1d315293dcd83 /usr/local/www/system.php | |
parent | e09da6c2668f041851316bcb334263814a3daffe (diff) | |
download | pfsense-0c8cc91517e200aba1cea0079a135e3c8da5b9a2.zip pfsense-0c8cc91517e200aba1cea0079a135e3c8da5b9a2.tar.gz |
Remove old webguiport code
webguiport is managed in system_advanced_admin.php these days, not here in system.php. This validation is never executed, so might a well clean up old unused code.
Diffstat (limited to 'usr/local/www/system.php')
-rwxr-xr-x | usr/local/www/system.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/usr/local/www/system.php b/usr/local/www/system.php index ead4700..28811b7 100755 --- a/usr/local/www/system.php +++ b/usr/local/www/system.php @@ -140,11 +140,6 @@ if ($_POST) { } } - if ($_POST['webguiport'] && (!is_numericint($_POST['webguiport']) || - ($_POST['webguiport'] < 1) || ($_POST['webguiport'] > 65535))) { - $input_errors[] = gettext("A valid TCP/IP port must be specified for the webConfigurator port."); - } - $direct_networks_list = explode(" ", filter_get_direct_networks_list()); for ($dnscounter=1; $dnscounter<5; $dnscounter++) { $dnsitem = "dns{$dnscounter}"; |