summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5f5ca39)
raw | patch | inline | side by side (parent: 5f5ca39)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 12 Jun 2009 09:40:45 +0000 (09:40 +0000) | ||
committer | hickert <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
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13713 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/admin/groups/class_groupManagement.inc | patch | blob | history | |
gosa-core/plugins/admin/users/class_userManagement.inc | patch | blob | history |
diff --git a/gosa-core/plugins/admin/groups/class_groupManagement.inc b/gosa-core/plugins/admin/groups/class_groupManagement.inc
index 81c8bb8f9b826cd101051c553b9ca7dbbc23acdb..acdbd2fa0e1f9a6f7deebe406272cfe1e758c7cd 100644 (file)
$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 8b8848a833ad952a1c1dbad6e4640613e885ab21..5278c648099235f06dc8f30f3e19295766bd6b45 100644 (file)
$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);
}
}
}