From: cajus Date: Wed, 2 Dec 2009 11:37:52 +0000 (+0000) Subject: Don't load special tabs when removing objects. They're never shown... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=052ab20ca8771127e8a43804f5634546780d73ee;p=gosa.git Don't load special tabs when removing objects. They're never shown... git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14857 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_management.inc b/gosa-core/include/class_management.inc index 59a848199..f65abf39f 100644 --- a/gosa-core/include/class_management.inc +++ b/gosa-core/include/class_management.inc @@ -3,7 +3,7 @@ * This code is part of GOsa (http://www.gosa-project.org) * Copyright (C) 2003-2008 GONICUS GmbH * - * ID: $$Id: class_plugin.inc 14584 2009-10-12 14:04:22Z hickert $$ + * ID: $$Id$$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -327,7 +327,7 @@ class management // Delete the object $this->dn = $dn; - $this->tabObject= new $tabClass($this->config,$this->config->data['TABS'][$tabType], $this->dn, $aclCategory); + $this->tabObject= new $tabClass($this->config,$this->config->data['TABS'][$tabType], $this->dn, $aclCategory, false, true); $this->tabObject->set_acl_base($this->dn); $this->tabObject->delete (); $this->tabObject->parent = &$this;