summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5182088)
raw | patch | inline | side by side (parent: 5182088)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 1 Mar 2006 05:02:06 +0000 (05:02 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 1 Mar 2006 05:02:06 +0000 (05:02 +0000) |
"showning own lock message caused by reloading edit post" ,
"prevent displaying broken objects "
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2777 594d385d-05f5-0310-b6e9-bd551577e9d8
"prevent displaying broken objects "
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2777 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/groups/class_groupManagement.inc | patch | blob | history |
diff --git a/plugins/admin/groups/class_groupManagement.inc b/plugins/admin/groups/class_groupManagement.inc
index 1bcece131b5f9c7b6d43a8f0ff91b42716b083d0..12555c1933950629e3e5ea84de193b5b61022167 100644 (file)
/* Finish group edit is triggered by the tabulator dialog, so
the user wants to save edited data. Check and save at this
point. */
- if (isset($_POST['edit_finish'])){
+ if ((isset($_POST['edit_finish'])) && (isset($this->grouptab->config)) ){
/* Check tabs, will feed message array */
$message= $this->grouptab->check();
}
/* User wants to edit data? */
- if ($s_action=="edit"){
+ if (($s_action=="edit") && (!isset($this->grouptab-> config))){
/* Get 'dn' from posted 'uid', must be unique */
$this->dn= $this->grouplist[trim($s_entry)]['dn'];
}
/* Show tab dialog if object is present */
- if ($this->grouptab){
+ if (isset($this->grouptab->config)){
$display= $this->grouptab->execute();
/* Don't show buttons if tab dialog requests this */