diff options
author | jim-p <jimp@pfsense.org> | 2016-10-13 10:42:42 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2016-10-13 10:43:09 -0400 |
commit | 3d69cce529ac2d4942213a0ce2667e9ac0f1e0e8 (patch) | |
tree | c0061b78b7534a93919a61b4abe386b5e6ac937b /src | |
parent | 00fc1317cb7d6f1e98975aa5c1f08794e0d43cb1 (diff) | |
download | pfsense-3d69cce529ac2d4942213a0ce2667e9ac0f1e0e8.zip pfsense-3d69cce529ac2d4942213a0ce2667e9ac0f1e0e8.tar.gz |
Clarify source port warning when editing a firewall rule.
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/firewall_rules_edit.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/firewall_rules_edit.php b/src/usr/local/www/firewall_rules_edit.php index a7d3268..cbadfd8 100644 --- a/src/usr/local/www/firewall_rules_edit.php +++ b/src/usr/local/www/firewall_rules_edit.php @@ -1366,9 +1366,9 @@ foreach (['src' => 'Source', 'dst' => 'Destination'] as $type => $name) { null, 'fa-cog' ))->setAttribute('type','button')->addClass('btn-info btn-sm')->setHelp( - 'The source port (or port range) is usually random and almost never equal '. - 'to the destination port range. It is not usually required, and should usually '. - 'be left at its default value, <b>any</b>).'); + 'The <b>Source Port Range</b> for a connection is typically random '. + 'and almost never equal to the destination port. '. + 'In most cases this setting must remain at its default value, <b>any</b>.'); } $portValues = ['' => gettext('(other)'), 'any' => gettext('any')]; @@ -1376,7 +1376,7 @@ foreach (['src' => 'Source', 'dst' => 'Destination'] as $type => $name) { $portValues[$port] = $portName.' ('. $port .')'; } - $group = new Form_Group($name .' port range'); + $group = new Form_Group($name .' Port Range'); $group->addClass($type . 'portrange'); |