diff options
author | Chris Buechler <cmb@pfsense.org> | 2014-11-04 23:05:20 -0600 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2014-11-04 23:05:20 -0600 |
commit | 7a22ab9bb162783b30133b05f51cb38f2463f29c (patch) | |
tree | 316f24c3c246524115bf84e246b1049b02accd96 /usr/local | |
parent | cbc6a13fa3a7fd5790558d5526ba9cb6d2c74aad (diff) | |
download | pfsense-7a22ab9bb162783b30133b05f51cb38f2463f29c.zip pfsense-7a22ab9bb162783b30133b05f51cb38f2463f29c.tar.gz |
fix up text
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/wizards/openvpn_wizard.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/wizards/openvpn_wizard.inc b/usr/local/www/wizards/openvpn_wizard.inc index 202be69..5b2b4c3 100644 --- a/usr/local/www/wizards/openvpn_wizard.inc +++ b/usr/local/www/wizards/openvpn_wizard.inc @@ -308,7 +308,7 @@ function step9_submitphpaction() { $input_errors[] = "Please do not use special characters in Certificate field names."; } elseif (in_array($_POST['descr'], $certnames) || in_array($_POST['descr'], $certcns)) { $stepid--; - $savemsg = "Please enter a different name for the Certicicate. A Certificate with that name/common name already exists."; + $savemsg = "Please enter a different name for the Certificate. A Certificate with that name/common name already exists."; } elseif (strlen($_POST['country']) != 2) { $stepid--; $savemsg = "Please enter only a two-letter ISO country code"; @@ -391,7 +391,7 @@ function step10_submitphpaction() { $portused = openvpn_port_used($_POST['protocol'], $_POST['interface'], $_POST['localport']); if ($portused != 0) - $input_errors[] = "The specified 'Local port' is in use. Please select another value"; + $input_errors[] = "The specified 'Local port' is in use. Please enter a port not already in use."; if (!isset($_POST['generatetlskey']) && isset($_POST['tlsauthentication'])) if (!strstr($_POST['tlssharedkey'], "-----BEGIN OpenVPN Static key V1-----") || @@ -435,7 +435,7 @@ function step12_submitphpaction() { $pconfig = $config['ovpnserver']; if (!is_array($config['ovpnserver'])) { - $message = "No configuration found please retry again."; + $message = "No configuration found, please try again."; header("Location:wizard.php?xml=openvpn_wizard.xml&stepid=1&message={$message}"); exit; } |