summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e50d6be)
raw | patch | inline | side by side (parent: e50d6be)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 1 Mar 2006 05:04:45 +0000 (05:04 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 1 Mar 2006 05:04:45 +0000 (05:04 +0000) |
"showning own lock message caused by reloading edit post" ,
"prevent displaying broken objects "
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2778 594d385d-05f5-0310-b6e9-bd551577e9d8
"prevent displaying broken objects "
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2778 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/ogroups/class_ogroupManagement.inc | patch | blob | history |
diff --git a/plugins/admin/ogroups/class_ogroupManagement.inc b/plugins/admin/ogroups/class_ogroupManagement.inc
index 300683b890f4bb3274bfc5ea93ccc614e530b1a5..f84780301f85f212677e4e36426ffe96bfce8882 100644 (file)
unset($_SESSION['objectinfo']);
}
- if ($s_action=="edit"){
+ if (($s_action=="edit") && (! isset($this->ogroup->config)) ){
/* Get 'dn' from posted 'uid', must be unique */
$this->dn= $this->ogrouplist[$s_entry]['dn'];
}
/* Finish button has been pressed */
- if (isset($_POST['edit_finish'])){
+ if ((isset($_POST['edit_finish'])) && (isset($this->ogroup->config)) ){
/* Check tabs, will feed message array */
$message= $this->ogroup->check();
}
/* Show dialog if object is present */
- if ($this->ogroup){
+ if (isset($this->ogroup->config)){
$display= $this->ogroup->execute();
/* Don't show buttons if tab dialog requests this */