From 662da7f36b3e01ce6ca211893c8a33db9942a749 Mon Sep 17 00:00:00 2001 From: Stephen Beaver Date: Tue, 12 Apr 2016 12:18:12 -0400 Subject: [PATCH] Fixed #6114 --- src/usr/local/www/firewall_nat_1to1_edit.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/usr/local/www/firewall_nat_1to1_edit.php b/src/usr/local/www/firewall_nat_1to1_edit.php index c76ef23037..6932f10e14 100644 --- a/src/usr/local/www/firewall_nat_1to1_edit.php +++ b/src/usr/local/www/firewall_nat_1to1_edit.php @@ -284,7 +284,7 @@ include("head.inc"); function build_srctype_list() { global $pconfig, $ifdisp; - $list = array('any' => gettext('Any'), 'single' => gettext('Single host or alias'), 'network' => gettext('Network')); + $list = array('any' => gettext('Any'), 'single' => gettext('Single host'), 'network' => gettext('Network')); $sel = is_specialnet($pconfig['src']); @@ -577,11 +577,11 @@ events.push(function() { // ---------- Click checkbox handlers --------------------------------------------------------- - $('#srctype').click(function () { + $('#srctype').change(function () { typesel_change(); }); - $('#dsttype').click(function () { + $('#dsttype').change(function () { typesel_change(); });