summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteve Beaver <sbeaver@netgate.com>2017-02-08 10:02:04 -0500
committerSteve Beaver <sbeaver@netgate.com>2017-02-08 10:02:04 -0500
commit2241553c41e412565dd5d4c97cd827a47ad3abee (patch)
tree2d71a8231075c7f290223d9459e712bd1ae2b888 /src
parentc74b018d42c02e0ee4e4a25e61db654c9f6caf63 (diff)
downloadpfsense-2241553c41e412565dd5d4c97cd827a47ad3abee.zip
pfsense-2241553c41e412565dd5d4c97cd827a47ad3abee.tar.gz
Rever changes escaping '%' chars in help text. No longer required.
Diffstat (limited to 'src')
-rw-r--r--src/usr/local/www/services_dyndns_edit.php2
-rw-r--r--src/usr/local/www/services_unbound_advanced.php2
-rw-r--r--src/usr/local/www/system_advanced_firewall.php4
-rw-r--r--src/usr/local/www/system_gateways_edit.php2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/local/www/services_dyndns_edit.php b/src/usr/local/www/services_dyndns_edit.php
index 292590f..7700f64 100644
--- a/src/usr/local/www/services_dyndns_edit.php
+++ b/src/usr/local/www/services_dyndns_edit.php
@@ -391,7 +391,7 @@ $section->addInput(new Form_Textarea(
'Result Match',
$pconfig['resultmatch']
))->sethelp('This field should be identical to what the DDNS Provider will return if the update succeeds, leave it blank to disable checking of returned results.' . '<br />' .
- 'To include the new IP in the request, put %%IP%% in its place.' . '<br />' .
+ 'To include the new IP in the request, put %IP% in its place.' . '<br />' .
'To include multiple possible values, separate them with a |. If the provider includes a |, escape it with \\|)' . '<br />' .
'Tabs (\\t), newlines (\\n) and carriage returns (\\r) at the beginning or end of the returned results are removed before comparison.');
diff --git a/src/usr/local/www/services_unbound_advanced.php b/src/usr/local/www/services_unbound_advanced.php
index eebf380..89be83c 100644
--- a/src/usr/local/www/services_unbound_advanced.php
+++ b/src/usr/local/www/services_unbound_advanced.php
@@ -230,7 +230,7 @@ $section->addInput(new Form_Checkbox(
'Prefetch Support',
'Message cache elements are prefetched before they expire to help keep the cache up to date',
$pconfig['prefetch']
-))->setHelp('When enabled, this option can cause an increase of around 10%% more DNS traffic and load on the server, but frequently requested items will not expire from the cache.');
+))->setHelp('When enabled, this option can cause an increase of around 10% more DNS traffic and load on the server, but frequently requested items will not expire from the cache.');
$section->addInput(new Form_Checkbox(
'prefetchkey',
diff --git a/src/usr/local/www/system_advanced_firewall.php b/src/usr/local/www/system_advanced_firewall.php
index 51b3f3c..4321298 100644
--- a/src/usr/local/www/system_advanced_firewall.php
+++ b/src/usr/local/www/system_advanced_firewall.php
@@ -447,7 +447,7 @@ $group->add(new Form_Input(
))->setHelp('When the number of state entries exceeds this value, adaptive '.
'scaling begins. All timeout values are scaled linearly with factor '.
'(adaptive.end - number of states) / (adaptive.end - adaptive.start). '.
- 'Defaults to 60%% of the Firewall Maximum States value');
+ 'Defaults to 60% of the Firewall Maximum States value');
$group->add(new Form_Input(
'adaptiveend',
@@ -459,7 +459,7 @@ $group->add(new Form_Input(
'become zero, effectively purging all state entries immediately. This '.
'value is used to define the scale factor, it should not actually be '.
'reached (set a lower state limit, see below). '.
- 'Defaults to 120%% of the Firewall Maximum States value');
+ 'Defaults to 120% of the Firewall Maximum States value');
$group->setHelp('Timeouts for states can be scaled adaptively as the number of '.
'state table entries grows. Leave blank to use default values, set to '.
diff --git a/src/usr/local/www/system_gateways_edit.php b/src/usr/local/www/system_gateways_edit.php
index a1f40dd..6b52fbc 100644
--- a/src/usr/local/www/system_gateways_edit.php
+++ b/src/usr/local/www/system_gateways_edit.php
@@ -756,7 +756,7 @@ $group->add(new Form_Input(
$pconfig['losshigh'],
['placeholder' => $dpinger_default['losshigh']]
));
-$group->setHelp('Low and high thresholds for packet loss in %%. ' .
+$group->setHelp('Low and high thresholds for packet loss in %. ' .
'Default is %d/%d.', $dpinger_default['losslow'], $dpinger_default['losshigh']);
$section->add($group);
OpenPOWER on IntegriCloud