From: hickert Date: Fri, 5 Mar 2010 17:32:20 +0000 (+0000) Subject: I really start hating those @ in front of function calls... makes debugging very... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ff67750107d466692c64c6ae621fe28c06057dda;p=gosa.git I really start hating those @ in front of function calls... makes debugging very hard. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16314 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_userinfo.inc b/gosa-core/include/class_userinfo.inc index 45499883e..57d1fc303 100644 --- a/gosa-core/include/class_userinfo.inc +++ b/gosa-core/include/class_userinfo.inc @@ -258,7 +258,7 @@ class userinfo function get_category_permissions($dn, $category, $any_acl = FALSE) { - return(@$this->get_permissions($dn,$category.'/0',"")); + return($this->get_permissions($dn,$category.'/0',"")); }