summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-11-07 18:35:11 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-11-07 18:35:11 +0000
commit219baec833223c5f1b6de74bdeaa66b815f38e89 (patch)
treec1e0f5908401475183c547f6b2877b05614e3c6e /usr
parent255ad1dcc5efed4a7ed088622cb08ad9e09c3651 (diff)
downloadpfsense-219baec833223c5f1b6de74bdeaa66b815f38e89.zip
pfsense-219baec833223c5f1b6de74bdeaa66b815f38e89.tar.gz
MFC 7446
Remove range feature. Will be reinvestigated after 1.0 Ticket #660 Ticket #661
Diffstat (limited to 'usr')
-rwxr-xr-xusr/local/www/firewall_virtual_ip_edit.php24
1 files changed, 14 insertions, 10 deletions
diff --git a/usr/local/www/firewall_virtual_ip_edit.php b/usr/local/www/firewall_virtual_ip_edit.php
index 4863a33..3ed9e68 100755
--- a/usr/local/www/firewall_virtual_ip_edit.php
+++ b/usr/local/www/firewall_virtual_ip_edit.php
@@ -223,20 +223,20 @@ function typesel_change() {
case 0: // single
document.iform.subnet.disabled = 0;
if((get_radio_value(document.iform.mode) == "proxyarp")) document.iform.subnet_bits.disabled = 1;
- document.iform.range_from.disabled = 1;
- document.iform.range_to.disabled = 1;
+ //document.iform.range_from.disabled = 1;
+ //document.iform.range_to.disabled = 1;
break;
case 1: // network
document.iform.subnet.disabled = 0;
document.iform.subnet_bits.disabled = 0;
- document.iform.range_from.disabled = 1;
- document.iform.range_to.disabled = 1;
+ //document.iform.range_from.disabled = 1;
+ //document.iform.range_to.disabled = 1;
break;
case 2: // range
document.iform.subnet.disabled = 1;
document.iform.subnet_bits.disabled = 1;
- document.iform.range_from.disabled = 0;
- document.iform.range_to.disabled = 0;
+ //document.iform.range_from.disabled = 0;
+ //document.iform.range_to.disabled = 0;
break;
}
}
@@ -302,13 +302,17 @@ function typesel_change() {
</select> <i id="typenote"></i>
</td>
</tr>
- <tr>
- <td>Range:&nbsp;&nbsp;</td>
- <td><input name="range_from" type="text" class="formfld" id="range_from" size="20" value="<?=htmlspecialchars($pconfig['range']['from']);?>">
+ <?php
+ /*
+ <tr>
+ <td>Range:&nbsp;&nbsp;</td>
+ <td><input name="range_from" type="text" class="formfld" id="range_from" size="20" value="<?=htmlspecialchars($pconfig['range']['from']);?>">
-
<input name="range_to" type="text" class="formfld" id="range_to" size="20" value="<?=htmlspecialchars($pconfig['range']['to']);?>">
</td>
- </tr>
+ </tr>
+ */
+ ?>
</table>
</td>
</tr>
OpenPOWER on IntegriCloud