summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2017-01-23 17:17:42 +0545
committerRenato Botelho <renato@netgate.com>2017-01-23 18:13:29 -0200
commita53cd6c8e364a70a8e03d51f116c4e19d809f7d2 (patch)
treeaecbf88bdb4b0d6ccd62ee4b989708d26a415124
parent895ab5ce5bc8b02573fe5e923bdca6500116f21d (diff)
downloadpfsense-a53cd6c8e364a70a8e03d51f116c4e19d809f7d2.zip
pfsense-a53cd6c8e364a70a8e03d51f116c4e19d809f7d2.tar.gz
Required fields in Load Balancer pages
(cherry picked from commit 275d769e0d99e02984e42e2328cbcb681f9b87fb)
-rw-r--r--src/usr/local/www/load_balancer_monitor_edit.php4
-rw-r--r--src/usr/local/www/load_balancer_pool_edit.php6
-rw-r--r--src/usr/local/www/load_balancer_virtual_server_edit.php4
3 files changed, 7 insertions, 7 deletions
diff --git a/src/usr/local/www/load_balancer_monitor_edit.php b/src/usr/local/www/load_balancer_monitor_edit.php
index 84b948b..00dcb3b 100644
--- a/src/usr/local/www/load_balancer_monitor_edit.php
+++ b/src/usr/local/www/load_balancer_monitor_edit.php
@@ -299,14 +299,14 @@ $section = new Form_Section('Edit Load Balancer - Monitor Entry');
$section->addInput(new Form_Input(
'name',
- 'Name',
+ '*Name',
'text',
$pconfig['name']
));
$section->addInput(new Form_Input(
'descr',
- 'Description',
+ '*Description',
'text',
$pconfig['descr']
));
diff --git a/src/usr/local/www/load_balancer_pool_edit.php b/src/usr/local/www/load_balancer_pool_edit.php
index 990a79e..48c654c 100644
--- a/src/usr/local/www/load_balancer_pool_edit.php
+++ b/src/usr/local/www/load_balancer_pool_edit.php
@@ -334,7 +334,7 @@ $section = new Form_Section('Add/Edit Load Balancer - Pool Entry');
$section->addInput(new Form_Input(
'name',
- 'Name',
+ '*Name',
'text',
$pconfig['name']
));
@@ -358,7 +358,7 @@ $section->addInput(new Form_Input(
$section->addInput(new Form_Input(
'port',
- 'Port',
+ '*Port',
'text',
$pconfig['port']
))->setHelp('This is the port the servers are listening on. A port alias listed in Firewall -> Aliases may also be specified here.');
@@ -416,7 +416,7 @@ $form->add($section);
$section = new Form_Section('Current Pool Members');
-$group = new Form_Group('Members');
+$group = new Form_Group('*Members');
$list = array();
diff --git a/src/usr/local/www/load_balancer_virtual_server_edit.php b/src/usr/local/www/load_balancer_virtual_server_edit.php
index 261a1e5..36ae7ec 100644
--- a/src/usr/local/www/load_balancer_virtual_server_edit.php
+++ b/src/usr/local/www/load_balancer_virtual_server_edit.php
@@ -205,7 +205,7 @@ $section = new Form_Section('Edit Load Balancer - Virtual Server Entry');
$section->addInput(new Form_Input(
'name',
- 'Name',
+ '*Name',
'text',
$pconfig['name']
));
@@ -219,7 +219,7 @@ $section->addInput(new Form_Input(
$section->addInput(new Form_Input(
'ipaddr',
- 'IP Address',
+ '*IP Address',
'text',
$pconfig['ipaddr']
))->setHelp('This is normally the WAN IP address for the server to listen on. ' .
OpenPOWER on IntegriCloud