From: hickert Date: Mon, 6 Sep 2010 07:05:33 +0000 (+0000) Subject: Updated gosa-si dependencies X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=af2e8afded1d458da938ef0593771cddf8d50b69;p=gosa.git Updated gosa-si dependencies git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@19510 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/systems/admin/systems/class_systemManagement.inc b/gosa-plugins/systems/admin/systems/class_systemManagement.inc index e0fe964ca..9835de109 100644 --- a/gosa-plugins/systems/admin/systems/class_systemManagement.inc +++ b/gosa-plugins/systems/admin/systems/class_systemManagement.inc @@ -527,13 +527,15 @@ class systemManagement extends management */ function saveEventDialog() { - $o_queue = new gosaSupportDaemon(); - $o_queue->append($this->dialogObject); - if($o_queue->is_error()){ - msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG); - }else{ - $this->closeDialogs(); - } + if($this->si_active){ + $o_queue = new gosaSupportDaemon(); + $o_queue->append($this->dialogObject); + if($o_queue->is_error()){ + msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG); + }else{ + $this->closeDialogs(); + } + } }