summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/vpn_ipsec_phase2.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2017-01-31 19:40:19 +0545
committerRenato Botelho <renato@netgate.com>2017-01-31 13:33:50 -0200
commit4181014a130f981b1758d3f3e6a46d6b047c5890 (patch)
tree9915d9ca37fede5438b937b54bb0b4c27930a385 /src/usr/local/www/vpn_ipsec_phase2.php
parent75e181961370b788ef7b3f92ea156c9b1e1f4e46 (diff)
downloadpfsense-4181014a130f981b1758d3f3e6a46d6b047c5890.zip
pfsense-4181014a130f981b1758d3f3e6a46d6b047c5890.tar.gz
Required fields for VPN pages
(cherry picked from commit 1bbdab13e436f5f2b9e381886be4d9c2d1a4e44f)
Diffstat (limited to 'src/usr/local/www/vpn_ipsec_phase2.php')
-rw-r--r--src/usr/local/www/vpn_ipsec_phase2.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/local/www/vpn_ipsec_phase2.php b/src/usr/local/www/vpn_ipsec_phase2.php
index 134fce6..109e96b 100644
--- a/src/usr/local/www/vpn_ipsec_phase2.php
+++ b/src/usr/local/www/vpn_ipsec_phase2.php
@@ -540,12 +540,12 @@ $section->addInput(new Form_Checkbox(
$section->addInput(new Form_Select(
'mode',
- 'Mode',
+ '*Mode',
$pconfig['mode'],
$p2_modes
));
-$group = new Form_Group('Local Network');
+$group = new Form_Group('*Local Network');
$group->addClass('opt_localid');
$subnetarray = get_configured_interface_with_descr();
@@ -596,7 +596,7 @@ $group->setHelp('If NAT/BINAT is required on this network specify the address to
$section->add($group);
if (!isset($pconfig['mobile'])) {
- $group = new Form_Group('Remote Network');
+ $group = new Form_Group('*Remote Network');
$group->addClass('opt_remoteid');
$group->add(new Form_Select(
@@ -628,7 +628,7 @@ $section = new Form_Section('Phase 2 Proposal (SA/Key Exchange)');
$section->addInput(new Form_Select(
'proto',
- 'Protocol',
+ '*Protocol',
$pconfig['proto'],
$p2_protos
))->setHelp('ESP is encryption, AH is authentication only.');
@@ -637,7 +637,7 @@ $i = 0;
$rows = count($p2_ealgos) - 1;
foreach ($p2_ealgos as $algo => $algodata) {
- $group = new Form_Group($i == 0 ? 'Encryption Algorithms':'');
+ $group = new Form_Group($i == 0 ? '*Encryption Algorithms':'');
$group->addClass('encalg');
// Note: ID attribute of each element created is to be unique. Not being used, suppressing it.
@@ -675,7 +675,7 @@ foreach ($p2_ealgos as $algo => $algodata) {
$section->add($group);
}
-$group = new Form_Group('Hash Algorithms');
+$group = new Form_Group('*Hash Algorithms');
foreach ($p2_halgos as $algo => $algoname) {
// Note: ID attribute of each element created is to be unique. Not being used, suppressing it.
OpenPOWER on IntegriCloud