From: hickert Date: Thu, 28 Jan 2010 10:39:13 +0000 (+0000) Subject: Fixed mangement handling; X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6fa205fb6fbd0d900e8d817c06da77576725561e;p=gosa.git Fixed mangement handling; git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15406 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc b/gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc index 2debc7f88..c5898fb3a 100644 --- a/gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc +++ b/gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc @@ -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); }