Code

Prevent "reload errors" ,
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 1 Mar 2006 05:04:45 +0000 (05:04 +0000)
committerhickert <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

plugins/admin/ogroups/class_ogroupManagement.inc

index 300683b890f4bb3274bfc5ea93ccc614e530b1a5..f84780301f85f212677e4e36426ffe96bfce8882 100644 (file)
@@ -270,7 +270,7 @@ class ogroupManagement extends plugin
       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'];
@@ -296,7 +296,7 @@ class ogroupManagement extends plugin
     }
 
     /* 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();
@@ -337,7 +337,7 @@ class ogroupManagement extends plugin
     }
 
     /* 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 */