summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_advanced_firewall.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2015-12-15 12:40:29 -0500
committerStephen Beaver <sbeaver@netgate.com>2015-12-15 12:40:55 -0500
commitf3da8b4ad3b0dfa746eb8da10bfc1e3fbf37adaf (patch)
treecce6f5c720821f3d5f22cd8955efb3ac01919cb6 /src/usr/local/www/system_advanced_firewall.php
parent39f91304482229e7fa631f64aecdcef96149122e (diff)
downloadpfsense-f3da8b4ad3b0dfa746eb8da10bfc1e3fbf37adaf.zip
pfsense-f3da8b4ad3b0dfa746eb8da10bfc1e3fbf37adaf.tar.gz
Remove unhelpful help text
Diffstat (limited to 'src/usr/local/www/system_advanced_firewall.php')
-rw-r--r--src/usr/local/www/system_advanced_firewall.php14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/usr/local/www/system_advanced_firewall.php b/src/usr/local/www/system_advanced_firewall.php
index 3e6248f..4a1eeb1 100644
--- a/src/usr/local/www/system_advanced_firewall.php
+++ b/src/usr/local/www/system_advanced_firewall.php
@@ -681,7 +681,7 @@ if (count($config['interfaces']) > 1) {
$form->add($section);
}
-$section = new Form_Section('State Timeouts');
+$section = new Form_Section('State Timeouts in seconds. (Leave blank for default)');
$tcpTimeouts = array('First', 'Opening', 'Established', 'Closing', 'FIN Wait', 'Closed');
foreach ($tcpTimeouts as $name) {
@@ -691,8 +691,7 @@ foreach ($tcpTimeouts as $name) {
'TCP '. $name,
'number',
$config['system'][$keyname]
- ))->setHelp('Enter value for TCP '. $name .' timeout in seconds. Leave blank for '.
- 'default (recommended).');
+ ));
}
$udpTimeouts = array('First', 'Single', 'Multiple');
@@ -703,8 +702,7 @@ foreach ($udpTimeouts as $name) {
'UDP '. $name,
'number',
$config['system'][$keyname]
- ))->setHelp('Enter value for UDP '. $name .' timeout in seconds. Leave blank for '.
- 'default (recommended).');
+ ));
}
$icmpTimeouts = array('First', 'Error');
@@ -715,8 +713,7 @@ foreach ($icmpTimeouts as $name) {
'ICMP '. $name,
'number',
$config['system'][$keyname]
- ))->setHelp('Enter value for ICMP '. $name .' timeout in seconds. Leave blank for '.
- 'default (recommended).');
+ ));
}
$otherTimeouts = array('First', 'Single', 'Multiple');
@@ -727,8 +724,7 @@ foreach ($otherTimeouts as $name) {
'Other '. $name,
'number',
$config['system'][$keyname]
- ))->setHelp('Enter value for Other '. $name .' timeout in seconds. Leave blank for '.
- 'default (recommended).');
+ ));
}
$form->add($section);
OpenPOWER on IntegriCloud