diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-07-28 00:09:55 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-07-28 00:09:55 +0000 |
commit | afd8ae1e201872702fab001d7d6080ff9dfe5f97 (patch) | |
tree | 1ab465600ba0047f18de0fea9bb408aebcae1c07 /usr/local | |
parent | f281e32e682f1743c65ea8e7b64093080d6db294 (diff) | |
download | pfsense-afd8ae1e201872702fab001d7d6080ff9dfe5f97.zip pfsense-afd8ae1e201872702fab001d7d6080ff9dfe5f97.tar.gz |
Not sure what a type of none is, it breaks our dropdown ordering.
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/interfaces.php | 2 | ||||
-rwxr-xr-x | usr/local/www/interfaces_wan.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php index 20d89e4..409014a 100755 --- a/usr/local/www/interfaces.php +++ b/usr/local/www/interfaces.php @@ -747,7 +747,7 @@ function show_mon_config() { <tr> <td valign="middle" class="vncell"><strong>Type</strong></td> <td class="vtable"> <select name="type" class="formselect" id="type" onchange="type_change()"> - <?php $opts = split(" ", "none Static DHCP PPPoE PPTP"); // CarpDEV-DHCP"); + <?php $opts = split(" ", "Static DHCP PPPoE PPTP"); // CarpDEV-DHCP"); foreach ($opts as $opt): ?> <option <?php if ($opt == $pconfig['type']) echo "selected";?>> <?=htmlspecialchars($opt);?> diff --git a/usr/local/www/interfaces_wan.php b/usr/local/www/interfaces_wan.php index 20d89e4..409014a 100755 --- a/usr/local/www/interfaces_wan.php +++ b/usr/local/www/interfaces_wan.php @@ -747,7 +747,7 @@ function show_mon_config() { <tr> <td valign="middle" class="vncell"><strong>Type</strong></td> <td class="vtable"> <select name="type" class="formselect" id="type" onchange="type_change()"> - <?php $opts = split(" ", "none Static DHCP PPPoE PPTP"); // CarpDEV-DHCP"); + <?php $opts = split(" ", "Static DHCP PPPoE PPTP"); // CarpDEV-DHCP"); foreach ($opts as $opt): ?> <option <?php if ($opt == $pconfig['type']) echo "selected";?>> <?=htmlspecialchars($opt);?> |