From 8a8ee344505da7faedfbc212361095f8d456215b Mon Sep 17 00:00:00 2001 From: hickert Date: Fri, 12 Jun 2009 09:40:45 +0000 Subject: [PATCH] Fixed message event, from triggered to sheduled. - Fixed undefined index timestamp git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13713 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/plugins/admin/groups/class_groupManagement.inc | 2 +- gosa-core/plugins/admin/users/class_userManagement.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gosa-core/plugins/admin/groups/class_groupManagement.inc b/gosa-core/plugins/admin/groups/class_groupManagement.inc index 81c8bb8f9..acdbd2fa0 100644 --- a/gosa-core/plugins/admin/groups/class_groupManagement.inc +++ b/gosa-core/plugins/admin/groups/class_groupManagement.inc @@ -172,7 +172,7 @@ class groupManagement extends plugin $type = $events['BY_CLASS'][$event]; $this->grouptab = new $type['CLASS_NAME']($this->config); $this->grouptab->add_groups($uids); - $this->grouptab->set_type(TRIGGERED_EVENT); + $this->grouptab->set_type(SCHEDULED_EVENT); } } } diff --git a/gosa-core/plugins/admin/users/class_userManagement.inc b/gosa-core/plugins/admin/users/class_userManagement.inc index 8b8848a83..5278c6480 100644 --- a/gosa-core/plugins/admin/users/class_userManagement.inc +++ b/gosa-core/plugins/admin/users/class_userManagement.inc @@ -187,7 +187,7 @@ class userManagement extends plugin $type = $events['BY_CLASS'][$event]; $this->usertab = new $type['CLASS_NAME']($this->config); $this->usertab->add_users($uids); - $this->usertab->set_type(TRIGGERED_EVENT); + $this->usertab->set_type(SCHEDULED_EVENT); } } } -- 2.30.2