X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Fplugins%2Fadmin%2Fgroups%2Fmain.inc;h=54f7ea3f468560b8301ae146b01ab57ef695ff18;hb=507c37b1379973cf027698929b596b0f88a13984;hp=aac19f86cb2c568a4733cf48c0df2df625e0602d;hpb=6a9f0a5811944230a4d0f6a57563e16c7951d5c7;p=gosa.git diff --git a/gosa-core/plugins/admin/groups/main.inc b/gosa-core/plugins/admin/groups/main.inc index aac19f86c..54f7ea3f4 100644 --- a/gosa-core/plugins/admin/groups/main.inc +++ b/gosa-core/plugins/admin/groups/main.inc @@ -1,54 +1,50 @@ remove_lock(); - del_lock ($ui->dn); - session::un_set ('groupManagement'); - } -} else { - /* Create groupManagement object on demand */ - if (!session::is_set('groupManagement') || (isset($_GET['reset']) && $_GET['reset'] == 1)){ - session::set('groupManagement',new groupManagement ($config, $ui)); + $macl = session::get('groupManagement'); + $macl->remove_lock(); } - $groupManagement = session::get('groupManagement'); - $groupManagement->save_object(); - $output= $groupManagement->execute(); +} - /* Page header*/ - if (session::is_set('objectinfo')){ - $display= print_header(get_template_path('images/group.png'), - _("Group administration"), "\"\" ". - @LDAP::fix(session::get('objectinfo'))); - } else { - $display= print_header(get_template_path('images/group.png'), _("Group administration")); - } +/* Remove this plugin from session +*/ +if ( $cleanup ){ + session::un_set('groupManagement'); +}else{ - $display.= $output; + /* Create groupmanagement object on demand */ + if (!session::is_set('groupManagement')){ + $groupManagement= new groupManagement ($config, $ui); + session::set('groupManagement',$groupManagement); + } + $groupManagement = session::get('groupManagement'); + $display= $groupManagement->execute(); /* Reset requested? */ if (isset($_GET['reset']) && $_GET['reset'] == 1){ - del_lock ($ui->dn); session::un_set ('groupManagement'); }