mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Correct dispaly of checkboxes for ipsec
This commit is contained in:
parent
8cb7d3e386
commit
ce21dfca21
@ -107,9 +107,9 @@ if (isset($p1index) && $a_phase1[$p1index]) {
|
||||
$pconfig['descr'] = $a_phase1[$p1index]['descr'];
|
||||
$pconfig['nat_traversal'] = $a_phase1[$p1index]['nat_traversal'];
|
||||
|
||||
if (!isset($a_phase1[$p1index]['reauth_enable']))
|
||||
if (isset($a_phase1[$p1index]['reauth_enable']))
|
||||
$pconfig['reauth_enable'] = true;
|
||||
if (!isset($a_phase1[$p1index]['rekey_enable']))
|
||||
if (isset($a_phase1[$p1index]['rekey_enable']))
|
||||
$pconfig['rekey_enable'] = true;
|
||||
|
||||
if ($a_phase1[$p1index]['dpd_delay'] && $a_phase1[$p1index]['dpd_maxfail']) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user