summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_routes_edit.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2016-04-05 07:59:34 -0400
committerStephen Beaver <sbeaver@netgate.com>2016-04-05 07:59:38 -0400
commit73ff9530d1a19c118b6c18ecda398b02002c52e0 (patch)
tree64808fee10ee5142ecfeb3b35e8ea193d9a1d196 /src/usr/local/www/system_routes_edit.php
parent4d9a5d999eac0e6b99a02eac377da035558bdcca (diff)
downloadpfsense-73ff9530d1a19c118b6c18ecda398b02002c52e0.zip
pfsense-73ff9530d1a19c118b6c18ecda398b02002c52e0.tar.gz
Merge pull request #2841 from NOYB/System_-_Miscellaneous_-_Remove_Personalizations
(cherry picked from commit 3061702cce23fcc5259f7d6d119a6fe05de84149)
Diffstat (limited to 'src/usr/local/www/system_routes_edit.php')
-rw-r--r--src/usr/local/www/system_routes_edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/system_routes_edit.php b/src/usr/local/www/system_routes_edit.php
index b8d9c3a..7db2e50 100644
--- a/src/usr/local/www/system_routes_edit.php
+++ b/src/usr/local/www/system_routes_edit.php
@@ -126,7 +126,7 @@ if ($_POST) {
if (!isset($a_gateways[$_POST['gateway']])) {
$input_errors[] = gettext("A valid gateway must be specified.");
} else if (isset($a_gateways[$_POST['gateway']]['disabled']) && !$_POST['disabled']) {
- $input_errors[] = gettext("The gateway is disabled but the route is not. You must disable the route in order to choose a disabled gateway.");
+ $input_errors[] = gettext("The gateway is disabled but the route is not. The route must be disabled in order to choose a disabled gateway.");
} else {
// Note that the 3rd parameter "disabled" must be passed as explicitly true or false.
if (!validate_address_family($_POST['network'], $_POST['gateway'], $_POST['disabled'] ? true : false)) {
@@ -306,7 +306,7 @@ $section->addInput(new Form_Input(
'Description',
'text',
htmlspecialchars($pconfig['descr'])
-))->setHelp('You may enter a description here for your reference (not parsed).');
+))->setHelp('A description may be entered here for administrative reference (not parsed).');
$form->add($section);
OpenPOWER on IntegriCloud