summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNewEraCracker <neweracracker@gmail.com>2016-10-03 19:38:08 +0100
committerjim-p <jimp@pfsense.org>2016-10-07 15:06:34 -0400
commit0a1daa734cf21e72fc1dcd1c992bc287d11666c4 (patch)
tree46485fe65f380c2be6eb7816fc84c2a612d48044
parent9b9065d17272660ad31f966c566eb2942f018a33 (diff)
downloadpfsense-0a1daa734cf21e72fc1dcd1c992bc287d11666c4.zip
pfsense-0a1daa734cf21e72fc1dcd1c992bc287d11666c4.tar.gz
Fix typo: The input field is named source_hash_key
(cherry picked from commit 870b9bc11b993ce8122b448083d29a04bcb30151)
-rw-r--r--src/usr/local/www/firewall_nat_out_edit.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/firewall_nat_out_edit.php b/src/usr/local/www/firewall_nat_out_edit.php
index e3fe45e..a439575 100644
--- a/src/usr/local/www/firewall_nat_out_edit.php
+++ b/src/usr/local/www/firewall_nat_out_edit.php
@@ -746,11 +746,11 @@ events.push(function() {
function poolopts_change() {
if ($('#target option:selected').text().trim().substring(0,4) == "Host") {
hideInput('poolopts', false);
- hideInput('source_host_key', true);
+ hideInput('source_hash_key', true);
hideIpAddress('targetip', true);
} else if ($('#target option:selected').text().trim().substring(0,6) == "Subnet") {
hideInput('poolopts', false);
- hideInput('source_host_key', true);
+ hideInput('source_hash_key', true);
hideIpAddress('targetip', true);
} else if ($('#target option:selected').text().trim().substring(0,5) == "Other") {
hideInput('poolopts', false);
@@ -758,7 +758,7 @@ events.push(function() {
} else {
$('#poolopts').prop('selectedIndex',0);
hideInput('poolopts', true);
- hideInput('source_host_key', true);
+ hideInput('source_hash_key', true);
hideIpAddress('targetip', true);
$('#targetip').val('');
$('#targetip_subnet').val('0');
OpenPOWER on IntegriCloud