diff options
author | jim-p <jimp@pfsense.org> | 2010-08-13 14:20:49 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2010-08-13 14:20:49 -0400 |
commit | fe6d7a55775638fac9eaaa373e330399844042a2 (patch) | |
tree | f997b57964e7c80596b279f1893cb6d794fbcc49 /usr | |
parent | a22d475f113d9f46fcb5015ea76901cb30ff4a3e (diff) | |
download | pfsense-fe6d7a55775638fac9eaaa373e330399844042a2.zip pfsense-fe6d7a55775638fac9eaaa373e330399844042a2.tar.gz |
Fix typo
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/vpn_openvpn_server.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/vpn_openvpn_server.php b/usr/local/www/vpn_openvpn_server.php index 02278fe..f085f27 100644 --- a/usr/local/www/vpn_openvpn_server.php +++ b/usr/local/www/vpn_openvpn_server.php @@ -249,7 +249,7 @@ if ($_POST) { /* If we are not in shared key mode, then we need the CA/Cert. */ if ($pconfig['mode'] != "p2p_shared_key") { $reqdfields = explode(" ", "caref certref"); - $reqdfieldsn = array(gettext("Certificate Authority"),gettext("Certificate"));; + $reqdfieldsn = array(gettext("Certificate Authority"),gettext("Certificate")); } elseif (!$pconfig['autokey_enable']) { /* We only need the shared key filled in if we are in shared key mode and autokey is not selected. */ $reqdfields = array('shared_key'); |