From 3e2bd5deb8ad20d74047bef7482b110b5d472fb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ermal=20Lu=E7i?= Date: Thu, 7 May 2009 21:07:27 +0000 Subject: Propperly fix openvpn parameter parsing. --- etc/inc/openvpn.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'etc') diff --git a/etc/inc/openvpn.inc b/etc/inc/openvpn.inc index 9c3d69f..fe7be42 100644 --- a/etc/inc/openvpn.inc +++ b/etc/inc/openvpn.inc @@ -168,14 +168,14 @@ function openvpn_get_cipherlist() { function openvpn_validate_host($value, $name) { $value = trim($value); - if (empty($value) || !is_domain($value) || !is_ipaddr($value))) + if (empty($value) || (!is_domain($value) && !is_ipaddr($value))) return "The field '$name' must contain a valid IP address or domain name."; return false; } function openvpn_validate_port($value, $name) { $value = trim($value); - if (empty($value) || !is_numeric($value) || $value < 0 || ($value > 65535))) + if (empty($value) || !is_numeric($value) || $value < 0 || ($value > 65535)) return "The field '$name' must contain a valid port, ranging from 0 to 65535."; return false; } -- cgit v1.1