summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/firewall_rules_edit.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2016-10-13 10:42:42 -0400
committerjim-p <jimp@pfsense.org>2016-10-13 10:42:42 -0400
commit7ea6dabecb9997039ca1ebc0e425ef97b6fef6c9 (patch)
treeefcfa77b75c14b37cfdcb4c7942cda89b5f0ed89 /src/usr/local/www/firewall_rules_edit.php
parentd02ee1387fdb159bfb7cb9495003f66545d97989 (diff)
downloadpfsense-7ea6dabecb9997039ca1ebc0e425ef97b6fef6c9.zip
pfsense-7ea6dabecb9997039ca1ebc0e425ef97b6fef6c9.tar.gz
Clarify source port warning when editing a firewall rule.
Diffstat (limited to 'src/usr/local/www/firewall_rules_edit.php')
-rw-r--r--src/usr/local/www/firewall_rules_edit.php8
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 512fbb8..038b383 100644
--- a/src/usr/local/www/firewall_rules_edit.php
+++ b/src/usr/local/www/firewall_rules_edit.php
@@ -1329,9 +1329,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')];
@@ -1339,7 +1339,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');
OpenPOWER on IntegriCloud