diff options
author | Erik Fonnesbeck <efonnes@gmail.com> | 2011-02-04 04:49:47 -0700 |
---|---|---|
committer | Erik Fonnesbeck <efonnes@gmail.com> | 2011-02-04 04:58:23 -0700 |
commit | 891012ce078fc49deaaff8fae0954b2caadb2d50 (patch) | |
tree | f20fb3cb20914a61903356d013f9a4872eb9e9bd /usr | |
parent | b663d4ce60e474386ce38bd81f18228383cfd7cf (diff) | |
download | pfsense-891012ce078fc49deaaff8fae0954b2caadb2d50.zip pfsense-891012ce078fc49deaaff8fae0954b2caadb2d50.tar.gz |
Change destination back to the field type for fields that allow an alias - they appear to work there (or at least doesn't say it is an error?).
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_nat_1to1_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/firewall_nat_1to1_edit.php b/usr/local/www/firewall_nat_1to1_edit.php index 1a3ce77..b8956af 100755 --- a/usr/local/www/firewall_nat_1to1_edit.php +++ b/usr/local/www/firewall_nat_1to1_edit.php @@ -413,7 +413,7 @@ function typesel_change() { <tr> <td><?=gettext("Address:"); ?> </td> <td> - <input name="dst" type="text" class="formfld" id="dst" size="20" value="<?php if (!is_specialnet($pconfig['dst'])) echo htmlspecialchars($pconfig['dst']);?>"> + <input name="dst" type="text" autocomplete="off" class="formfldalias" id="dst" size="20" value="<?php if (!is_specialnet($pconfig['dst'])) echo htmlspecialchars($pconfig['dst']);?>"> / <select name="dstmask" class="formselect" id="dstmask"> <?php |