Code

Upated systems management.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 27 Feb 2008 09:06:21 +0000 (09:06 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 27 Feb 2008 09:06:21 +0000 (09:06 +0000)
-Updated queue handling

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9152 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/systems/admin/systems/class_systemManagement.inc

index 7b1454225790581844f85efbd20de23468df7187..afa8b44ec74959d5cb70f514c9a3fe9ac234e4ac 100644 (file)
@@ -547,8 +547,9 @@ class systems extends plugin
         $data['timestamp'] = $this->systab->get_timestamp();
         $o_queue = new gosaSupportDaemon();
         foreach($targets as $target){
-          $data['mac'] =  $target;
-          if(!$o_queue->send($header,$target,$data,TRUE)){
+          $data['macaddress'] = $target;
+          $o_queue->send($header,$target,$data,TRUE);
+          if($o_queue->is_error()){
             msg_dialog::display(_("Daemon"),sprintf(_("Something went wrong while talking to the daemon: %s."),
                   $o_queue->get_error()),ERROR_DIALOG);
           }