From: hickert Date: Thu, 5 Jun 2008 09:01:04 +0000 (+0000) Subject: fixed tests X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bf07e865869447ccfc7b25b610696be53db414fb;p=gosa.git fixed tests git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11234 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/utils/class_tests.inc b/gosa-core/include/utils/class_tests.inc index d67ab744a..136dca87a 100644 --- a/gosa-core/include/utils/class_tests.inc +++ b/gosa-core/include/utils/class_tests.inc @@ -197,7 +197,7 @@ class tests { */ public static function is_ip_range($ip1,$ip2) { - if(!is_ip($ip1) || !is_ip($ip2)){ + if(!tests::is_ip($ip1) || !tests::is_ip($ip2)){ return(FALSE); }else{ $ar1 = split("\.",$ip1);