From af2e8afded1d458da938ef0593771cddf8d50b69 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 6 Sep 2010 07:05:33 +0000 Subject: [PATCH] Updated gosa-si dependencies git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@19510 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../admin/systems/class_systemManagement.inc | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) 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(); + } + } } -- 2.30.2