From: hickert Date: Mon, 14 Apr 2008 06:31:05 +0000 (+0000) Subject: Updated gosaSupportDaemon - Parameter check was to strict X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ebc7db3f5ea0fe06d66bb32c30999c3484961d37;p=gosa.git Updated gosaSupportDaemon - Parameter check was to strict git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10372 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_gosaSupportDaemon.inc b/gosa-core/include/class_gosaSupportDaemon.inc index 95f81c9de..2e300bfe5 100644 --- a/gosa-core/include/class_gosaSupportDaemon.inc +++ b/gosa-core/include/class_gosaSupportDaemon.inc @@ -146,7 +146,7 @@ class gosaSupportDaemon } /* Check Parameter */ - if(!is_array($package) || !count($package)){ + if(!is_array($package)){ trigger_error("Third parameter must be an array. With at least one attribute name."); return($ret); }