diff options
author | jim-p <jimp@pfsense.org> | 2016-04-05 10:27:41 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2016-04-05 10:27:41 -0400 |
commit | 4081c2320664db7e11aed93e2f5109bf89916627 (patch) | |
tree | 5164b6ebc834f3dff26ffcd797a677ff973caa43 | |
parent | b226a437b3a81f2d6a4e07b3c38017cc62a99b5f (diff) | |
download | pfsense-4081c2320664db7e11aed93e2f5109bf89916627.zip pfsense-4081c2320664db7e11aed93e2f5109bf89916627.tar.gz |
Fix wording on advanced IPsec settings titles.
strongSwan doesn't get restarted in debug mode, it just changes the verbose level of log sections. Old terminology was leftover from racoon days.
-rw-r--r-- | src/usr/local/www/vpn_ipsec_settings.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/vpn_ipsec_settings.php b/src/usr/local/www/vpn_ipsec_settings.php index ca33a7d..3c75716 100644 --- a/src/usr/local/www/vpn_ipsec_settings.php +++ b/src/usr/local/www/vpn_ipsec_settings.php @@ -271,7 +271,7 @@ display_top_tabs($tab_array); $form = new Form; -$section = new Form_Section('Start IPsec in Debug Mode Based on Sections Selected'); +$section = new Form_Section('IPsec Logging Controls'); foreach ($ipsec_log_cats as $cat => $desc) { $section->addInput(new Form_Select( @@ -283,12 +283,12 @@ foreach ($ipsec_log_cats as $cat => $desc) { } $section->addInput(new Form_StaticText('', ''))->setHelp( - 'Launches IPsec in debug mode so that more verbose logs will be generated to aid in troubleshooting.' + 'Changes the log verbosity for the IPsec daemon, so that more detail will be generated to aid in troubleshooting.' ); $form->add($section); -$section = new Form_Section('IPsec Advanced Settings'); +$section = new Form_Section('Advanced IPsec Settings'); $section->addInput(new Form_Select( 'uniqueids', |