diff options
author | Chris Buechler <cmb@pfsense.org> | 2010-02-11 21:50:22 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2010-02-11 21:50:22 -0500 |
commit | 27e9e518d78da992a3252349beb5ad2c8fb1bb6e (patch) | |
tree | a02f2cf1ba58b10402fa2590961b402ea4236e0a /usr/local/www | |
parent | b8e3b04340c339ed1645879dc46746e8f162aad5 (diff) | |
download | pfsense-27e9e518d78da992a3252349beb5ad2c8fb1bb6e.zip pfsense-27e9e518d78da992a3252349beb5ad2c8fb1bb6e.tar.gz |
fix text
Diffstat (limited to 'usr/local/www')
-rw-r--r-- | usr/local/www/vpn_ipsec_phase2.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/vpn_ipsec_phase2.php b/usr/local/www/vpn_ipsec_phase2.php index 9c99ef1..b08cb3f 100644 --- a/usr/local/www/vpn_ipsec_phase2.php +++ b/usr/local/www/vpn_ipsec_phase2.php @@ -123,7 +123,7 @@ if ($_POST) { switch ($pconfig['localid_type']) { case "network": if (!$pconfig['localid_netbits'] || !is_numeric($pconfig['localid_netbits'])) - $input_errors[] = "A valid local network bit count must be specified.."; + $input_errors[] = "A valid local network bit count must be specified."; case "address": if (!$pconfig['localid_address'] || !is_ipaddr($pconfig['localid_address'])) $input_errors[] = "A valid local network IP address must be specified."; @@ -133,7 +133,7 @@ if ($_POST) { switch ($pconfig['remoteid_type']) { case "network": if (!$pconfig['remoteid_netbits'] || !is_numeric($pconfig['remoteid_netbits'])) - $input_errors[] = "A valid remote network bit count must be specified.."; + $input_errors[] = "A valid remote network bit count must be specified."; case "address": if (!$pconfig['remoteid_address'] || !is_ipaddr($pconfig['remoteid_address'])) $input_errors[] = "A valid remote network IP address must be specified."; |