summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cd5a55e)
raw | patch | inline | side by side (parent: cd5a55e)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 18 Feb 2008 10:19:02 +0000 (10:19 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 18 Feb 2008 10:19:02 +0000 (10:19 +0000) |
-Fixed sorting errors
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8943 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8943 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/groups/apps/class_groupApplication.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/groups/apps/class_groupApplication.inc b/gosa-plugins/goto/admin/groups/apps/class_groupApplication.inc
index c2e57e4e3b529f9da70eab578f3212457e62e0a0..03613b7254d78273d546c47cb759e6452c56c4d0 100644 (file)
$all = $this->_get_all_entries();
if(isset($all[$id])){
$all[$id]['STATUS'] = "REMOVED";
+ $all[$id]['ENTRIES'] = array();
return(TRUE);
}
return(FALSE);
if(isset($all[$folder_id])){
+ if(!isset($entry['ENTRIES'])){
+ $entries = array();
+ }else{
+ $entries = $entry['ENTRIES'];
+ }
+
$folder = &$all[$folder_id];
- $entries = $entry['ENTRIES'];
$entry['UNIQID'] = uniqid();
$entry['PARENT'] = $folder_id;