summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ced515f)
raw | patch | inline | side by side (parent: ced515f)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 20 Apr 2010 06:50:05 +0000 (06:50 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 20 Apr 2010 06:50:05 +0000 (06:50 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17723 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/admin/ogroups/class_ogroup.inc | patch | blob | history |
diff --git a/gosa-core/plugins/admin/ogroups/class_ogroup.inc b/gosa-core/plugins/admin/ogroups/class_ogroup.inc
index f793e779a9fcec4f2236d3b3985b9b2e138892c2..08e8af36cdaf5a5747a1a951c5010c7c0c61198c 100644 (file)
***********/
// Handle trust mode dialog
+ $this->dialog = FALSE;
$trustModeDialog = $this->trustModeDialog->execute();
if($this->trustModeDialog->trustSelect){
$this->dialog = TRUE;
return($trustModeDialog);
}
$smarty->assign("trustModeDialog",$trustModeDialog);
- $this->dialog = FALSE;
/***********
* Ende - Trusts
***********/
- /* Dialog handling */
- if(is_object($this->dialog) && $this->acl_is_moveable()){
- /* Must be called before save_object */
- $this->dialog->save_object();
-
- if($this->dialog->isClosed()){
- $this->dialog = false;
- }elseif($this->dialog->isSelected()){
-
- /* A new base was selected, check if it is a valid one */
- $tmp = $this->get_allowed_bases();
- if(isset($tmp[$this->dialog->isSelected()])){
- $this->base = $this->dialog->isSelected();
- }
- $this->dialog= false;
- }else{
- return($this->dialog->execute());
- }
- }
-
/* Add objects? */
if (isset($_POST["edit_membership"])){
$this->objectSelect= new objectSelect($this->config, get_userinfo());
- $this->dialog= TRUE;
}
/* Add objects finished? */
if (isset($_POST["objectSelect_cancel"])){
$this->objectSelect= FALSE;
- $this->dialog= FALSE;
}
/* Manage object add dialog */
if ($this->objectSelect){
session::set('filterBlacklist', array('dn'=> $this->member));
+ $this->dialog= TRUE;
return($this->objectSelect->execute());
}