summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cf4be6d)
raw | patch | inline | side by side (parent: cf4be6d)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 20 Feb 2008 14:08:01 +0000 (14:08 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 20 Feb 2008 14:08:01 +0000 (14:08 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8992 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_gosaSupportDaemon.inc | patch | blob | history |
diff --git a/gosa-core/include/class_gosaSupportDaemon.inc b/gosa-core/include/class_gosaSupportDaemon.inc
index adb819baec9112fee9670bc1b007050ae992095a..a657419d6303eee9825965a2763d44630f13bd5a 100644 (file)
}
- static function send($header, $to, $data= array())
+ static function send($header, $to, $data= array(), $answer_expected = FALSE)
{
$xml_message= "";
$xml_message.= "<$key>$value</$key>";
}
- return $d->_send("<xml><header>$header</header><source>GOSA</source><target>$to</target>".$xml_message."</xml>");
+ return $d->_send("<xml><header>$header</header><source>GOSA</source><target>$to</target>".$xml_message."</xml>",$answer_expected);
}