Code

Fixed mangement handling;
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 28 Jan 2010 10:39:13 +0000 (10:39 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 28 Jan 2010 10:39:13 +0000 (10:39 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15406 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc

index 2debc7f88792e5a417c690422b93325c904b21f2..c5898fb3a2962f722b0027a26276d4baee548cc2 100644 (file)
@@ -87,8 +87,7 @@ class ogroupManagement extends management
 
   function editEntry($action="",$target=array(),$all=array(), $altTabClass ="", $altTabType = "", $altAclCategory="")
   {
-    management::editEntry($action,$target);
-
+    $str = management::editEntry($action,$target);
     if(preg_match("/^edit_/",$action)){
       $tab = preg_replace("/^edit_/","",$action);
       if(isset($this->tabObject->by_object[$tab])){
@@ -97,6 +96,7 @@ class ogroupManagement extends management
         trigger_error("Unknown tab: ".$tab);
       }
     }
+    if(!empty($str)) return($str);
   }