From: cajus Date: Wed, 30 Jan 2008 09:04:36 +0000 (+0000) Subject: Fixed typo X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=df5c67299649242c46521fd7bab26257ff391127;p=gosa.git Fixed typo git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8651 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_gosaSupportDaemon.inc b/gosa-core/include/class_gosaSupportDaemon.inc index 98b568701..bf8de5005 100644 --- a/gosa-core/include/class_gosaSupportDaemon.inc +++ b/gosa-core/include/class_gosaSupportDaemon.inc @@ -544,12 +544,12 @@ class gosaSupportDaemon if($this->connect()){ $this->o_sock->write($data); - if ($answer_exepcted){ - $str = trim($this->o_sock->read()); - $entries = $this->xml_to_array($str); - if(isset($entries['XML']) && is_array($entries['XML'])){ - $ret = $entries; - } + if ($answer_expected){ + $str = trim($this->o_sock->read()); + $entries = $this->xml_to_array($str); + if(isset($entries['XML']) && is_array($entries['XML'])){ + $ret = $entries; + } } } return($ret);