From: hickert Date: Tue, 4 Mar 2008 13:33:26 +0000 (+0000) Subject: Updated gotomasses X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b29ca8078efaee0c6343311fff3b1354bb88c856;p=gosa.git Updated gotomasses git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9318 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/addons/goto/class_gotomasses.inc b/gosa-plugins/goto/addons/goto/class_gotomasses.inc index ee55782d2..83d32955b 100644 --- a/gosa-plugins/goto/addons/goto/class_gotomasses.inc +++ b/gosa-plugins/goto/addons/goto/class_gotomasses.inc @@ -49,15 +49,13 @@ class gotomasses extends plugin { /* Include config object */ $this->config= &$config; - $this->o_queue = new gosaSupportDaemon(TRUE,10); + $this->o_queue = new gosaSupportDaemon(TRUE,5); $this->events = DaemonEvent::get_event_types( SYSTEM_EVENT); /* Get tags that will be used in queue searches */ $this->event_tags = array("none"); - foreach($this->events['BY_CLASS'] as $evt){ - if(isset($evt['s_Queued_Action'])){ - $this->event_tags[] = $evt['s_Queued_Action']; - } + foreach($this->events['SCHEDULED'] as $evt){ + $this->event_tags[] = $evt['s_Queued_Action']; } }