From: hickert Date: Wed, 15 Sep 2010 09:01:57 +0000 (+0000) Subject: Fixed passwed argument List, first Argument has to be of type Array X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=596ea0c95d48f3d71211d66331a9f831ece09710;p=gosa.git Fixed passwed argument List, first Argument has to be of type Array git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19677 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/groupware/personal/groupware/class_groupware.inc b/gosa-plugins/groupware/personal/groupware/class_groupware.inc index 2739d02e6..67f307380 100644 --- a/gosa-plugins/groupware/personal/groupware/class_groupware.inc +++ b/gosa-plugins/groupware/personal/groupware/class_groupware.inc @@ -1029,7 +1029,7 @@ class groupware_dao{ // Location dropdownlist - only readable if($this->groupwarePluginRef->isFeatureEnabled("mailLocations")){ $resultArr["mailLocations"] = $this->groupwarePluginRef->rpcExec('gwGetMailboxLocations'); - $resultArr["mailLocation"] = $this->groupwarePluginRef->rpcExec(array('gwAcctGetLocation',$uid)); + $resultArr["mailLocation"] = $this->groupwarePluginRef->rpcExec('gwAcctGetLocation',array($uid)); }