From: hzerres Date: Tue, 14 Sep 2010 10:05:14 +0000 (+0000) Subject: removing the dummy array caused no data to be displayed. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=392c7a406029aa1afc8d25f76e51132887319789;p=gosa.git removing the dummy array caused no data to be displayed. corrected. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19661 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 5b5ac2338..f81e70cda 100644 --- a/gosa-plugins/groupware/personal/groupware/class_groupware.inc +++ b/gosa-plugins/groupware/personal/groupware/class_groupware.inc @@ -193,7 +193,7 @@ class groupware extends plugin if($status !== NULL){ - $compResponse = $this->groupwareDao->getComprehensiverUser($this->uid); + $response = $this->groupwareDao->getComprehensiverUser($this->uid); /* $response = array("mailAddress"=>"hape@exdom.de", "mailLocation"=>"mailbox 1", @@ -914,7 +914,7 @@ class groupware_dao{ * function_debug * (got ot remove the following variable, the function debug and all calls to it) */ - private $debug = false; + private $debug = true; private $availableMethods; private $availableProperties; @@ -1174,8 +1174,8 @@ class groupware_dao{ */ if($this->groupwarePluginRef->isFeatureEnabled("vacationMessage")){ - //$vacMessage = $this->get("vacationMessage", array($uid)); - $resultArr["vacationMessage"] = "dummy Vacation message - (getOutOfOfficeReply currently throws errors )"; + $vacMessage = $this->get("vacationMessage", array($uid)); + //$resultArr["vacationMessage"] = "dummy Vacation message - (getOutOfOfficeReply currently throws errors )"; } $this->debug("getComprehensiverUser:", $resultArr);