summaryrefslogtreecommitdiffstats
path: root/etc/inc
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2008-04-27 22:22:04 +0000
committerChris Buechler <cmb@pfsense.org>2008-04-27 22:22:04 +0000
commitb9f340f5f7ab1bcd0c7f6625852c8f886d1bac13 (patch)
tree8b9f6cb1387a2e8da0aa742fc2d2f6bcc8c14ec1 /etc/inc
parent90fcb813f43b9e7b5deff9e9685becf8af130114 (diff)
downloadpfsense-b9f340f5f7ab1bcd0c7f6625852c8f886d1bac13.zip
pfsense-b9f340f5f7ab1bcd0c7f6625852c8f886d1bac13.tar.gz
touch up text
Diffstat (limited to 'etc/inc')
-rw-r--r--etc/inc/openvpn.inc32
1 files changed, 16 insertions, 16 deletions
diff --git a/etc/inc/openvpn.inc b/etc/inc/openvpn.inc
index ff2cfdd..af07800 100644
--- a/etc/inc/openvpn.inc
+++ b/etc/inc/openvpn.inc
@@ -123,22 +123,22 @@ function openvpn_validate_input($mode, $post, $input_errors) {
if (!empty($post['dhcp_dns'])) {
$servers = explode(';', $post['dhcp_dns']);
foreach ($servers as $server) if (!is_ipaddr($server))
- {$input_errors[] = 'The field \'DHCP-Opt.: DNS-Server\' must contain a valid IP address and no whitespaces.';
+ {$input_errors[] = 'The field \'DHCP Option: DNS Server\' must contain a valid IP address and no whitespaces.';
break;}}
if (!empty($post['dhcp_wins'])) {
$servers = explode(';', $post['dhcp_wins']);
foreach ($servers as $server) if (!is_ipaddr($server))
- {$input_errors[] = 'The field \'DHCP-Opt.: WINS-Server\' must contain a valid IP address and no whitespaces.';
+ {$input_errors[] = 'The field \'DHCP Option: WINS Server\' must contain a valid IP address and no whitespaces.';
break;}}
if (!empty($post['dhcp_nbdd'])) {
$servers = explode(';', $post['dhcp_nbdd']);
foreach ($servers as $server) if (!is_ipaddr($server))
- {$input_errors[] = 'The field \'DHCP-Opt.: NBDD-Server\' must contain a valid IP address and no whitespaces.';
+ {$input_errors[] = 'The field \'DHCP Option: NBDD Server\' must contain a valid IP address and no whitespaces.';
break;}}
if (!empty($post['dhcp_ntp'])) {
$servers = explode(';', $post['dhcp_ntp']);
foreach ($servers as $server) if (!is_ipaddr($server))
- {$input_errors[] = 'The field \'DHCP-Opt.: NTP-Server\' must contain a valid IP address and no whitespaces.';
+ {$input_errors[] = 'The field \'DHCP Option: NTP Server\' must contain a valid IP address and no whitespaces.';
break;}}
if (isset($post['maxclients']) && $post['maxclients'] != "") {
if (!is_numeric($post['maxclients']))
@@ -247,21 +247,21 @@ function openvpn_validate_input_csc($post, $input_errors) {
if ($post['push_reset'] != 'on') {
if (!empty($post['dhcp_domainname']))
- $input_errors[] = 'It makes no sense to unselect push reset and configure dhcp-options';
+ $input_errors[] = 'It makes no sense to unselect push reset and configure DHCP options';
elseif (!empty($post['dhcp_dns']))
- $input_errors[] = 'It makes no sense to unselect push reset and configure dhcp-options';
+ $input_errors[] = 'It makes no sense to unselect push reset and configure DHCP options';
elseif (!empty($post['dhcp_wins']))
- $input_errors[] = 'It makes no sense to unselect push reset and configure dhcp-options';
+ $input_errors[] = 'It makes no sense to unselect push reset and configure DHCP options';
elseif (!empty($post['dhcp_nbdd']))
- $input_errors[] = 'It makes no sense to unselect push reset and configure dhcp-options';
+ $input_errors[] = 'It makes no sense to unselect push reset and configure DHCP options';
elseif (!empty($post['dhcp_ntp']))
- $input_errors[] = 'It makes no sense to unselect push reset and configure dhcp-options';
+ $input_errors[] = 'It makes no sense to unselect push reset and configure DHCP options';
elseif ($post['dhcp_nbttype'])
- $input_errors[] = 'It makes no sense to unselect push reset and configure dhcp-options';
+ $input_errors[] = 'It makes no sense to unselect push reset and configure DHCP options';
elseif (!empty($post['dhcp_nbtscope']))
- $input_errors[] = 'It makes no sense to unselect push reset and configure dhcp-options';
+ $input_errors[] = 'It makes no sense to unselect push reset and configure DHCP options';
elseif ($post['dhcp_nbtdisable'])
- $input_errors[] = 'It makes no sense to unselect push reset and configure dhcp-options';
+ $input_errors[] = 'It makes no sense to unselect push reset and configure DHCP options';
}
else {
@@ -269,22 +269,22 @@ function openvpn_validate_input_csc($post, $input_errors) {
if (!empty($post['dhcp_dns'])) {
$servers = explode(';', $post['dhcp_dns']);
foreach ($servers as $server) if (!is_ipaddr($server))
- {$input_errors[] = 'The field \'DHCP-Opt.: DNS-Server\' must contain a valid IP address and no whitespaces.';
+ {$input_errors[] = 'The field \'DHCP Option: DNS Server\' must contain a valid IP address and no whitespaces.';
break;}}
if (!empty($post['dhcp_wins'])) {
$servers = explode(';', $post['dhcp_wins']);
foreach ($servers as $server) if (!is_ipaddr($server))
- {$input_errors[] = 'The field \'DHCP-Opt.: WINS-Server\' must contain a valid IP address and no whitespaces.';
+ {$input_errors[] = 'The field \'DHCP Option: WINS Server\' must contain a valid IP address and no whitespaces.';
break;}}
if (!empty($post['dhcp_nbdd'])) {
$servers = explode(';', $post['dhcp_nbdd']);
foreach ($servers as $server) if (!is_ipaddr($server))
- {$input_errors[] = 'The field \'DHCP-Opt.: NBDD-Server\' must contain a valid IP address and no whitespaces.';
+ {$input_errors[] = 'The field \'DHCP Option: NBDD Server\' must contain a valid IP address and no whitespaces.';
break;}}
if (!empty($post['dhcp_ntp'])) {
$servers = explode(';', $post['dhcp_ntp']);
foreach ($servers as $server) if (!is_ipaddr($server))
- {$input_errors[] = 'The field \'DHCP-Opt.: NTP-Server\' must contain a valid IP address and no whitespaces.';
+ {$input_errors[] = 'The field \'DHCP Option: NTP Server\' must contain a valid IP address and no whitespaces.';
break;}}
}}
OpenPOWER on IntegriCloud