Code

Fixed message event, from triggered to sheduled.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Jun 2009 09:40:45 +0000 (09:40 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Jun 2009 09:40:45 +0000 (09:40 +0000)
- 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
gosa-core/plugins/admin/users/class_userManagement.inc

index 81c8bb8f9b826cd101051c553b9ca7dbbc23acdb..acdbd2fa0e1f9a6f7deebe406272cfe1e758c7cd 100644 (file)
@@ -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);
         }
       }
     }
index 8b8848a833ad952a1c1dbad6e4640613e885ab21..5278c648099235f06dc8f30f3e19295766bd6b45 100644 (file)
@@ -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);
         }
       }
     }