From 71529fcab0f763b2d2fe2ce413951e90b199e321 Mon Sep 17 00:00:00 2001 From: psc Date: Fri, 6 Mar 2009 14:52:22 +0000 Subject: [PATCH] Updated several tabs_*.inc files: - Properly call the tabs::tabs function to make sure ACLs are properly inherited on a re_init etc. (Fixes problem with the Apply button in several objects, e.g when editting printer objects; Trac: #1205) git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@13506 594d385d-05f5-0310-b6e9-bd551577e9d8 --- trunk/gosa-plugins/goto/admin/systems/goto/tabs_printers.inc | 1 + trunk/gosa-plugins/goto/admin/systems/goto/tabs_terminal.inc | 2 ++ .../gosa-plugins/goto/admin/systems/goto/tabs_workstation.inc | 3 ++- trunk/gosa-plugins/systems/admin/systems/tabs_server.inc | 2 ++ 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/trunk/gosa-plugins/goto/admin/systems/goto/tabs_printers.inc b/trunk/gosa-plugins/goto/admin/systems/goto/tabs_printers.inc index 5b8eb259d..eab3b256c 100644 --- a/trunk/gosa-plugins/goto/admin/systems/goto/tabs_printers.inc +++ b/trunk/gosa-plugins/goto/admin/systems/goto/tabs_printers.inc @@ -5,6 +5,7 @@ class printtabs extends tabs function printtabs($config, $data, $dn,$category) { + tabs::tabs($config, $data, $dn,$category); /* Save dn */ $this->dn= $dn; diff --git a/trunk/gosa-plugins/goto/admin/systems/goto/tabs_terminal.inc b/trunk/gosa-plugins/goto/admin/systems/goto/tabs_terminal.inc index 266566c2c..b63ca6dc3 100644 --- a/trunk/gosa-plugins/goto/admin/systems/goto/tabs_terminal.inc +++ b/trunk/gosa-plugins/goto/admin/systems/goto/tabs_terminal.inc @@ -6,6 +6,8 @@ class termtabs extends tabs function termtabs($config, $data, $dn, $category) { + tabs::tabs($config, $data, $dn,$category); + /* Save dn */ $this->dn= $dn; $this->config= $config; diff --git a/trunk/gosa-plugins/goto/admin/systems/goto/tabs_workstation.inc b/trunk/gosa-plugins/goto/admin/systems/goto/tabs_workstation.inc index a84b5fcb9..767da35eb 100644 --- a/trunk/gosa-plugins/goto/admin/systems/goto/tabs_workstation.inc +++ b/trunk/gosa-plugins/goto/admin/systems/goto/tabs_workstation.inc @@ -7,7 +7,8 @@ class worktabs extends tabs function worktabs($config, $data, $dn,$category) { - + tabs::tabs($config, $data, $dn,$category); + /* Save dn */ $this->dn= $dn; $this->config= $config; diff --git a/trunk/gosa-plugins/systems/admin/systems/tabs_server.inc b/trunk/gosa-plugins/systems/admin/systems/tabs_server.inc index 39c030953..526eeaa7b 100644 --- a/trunk/gosa-plugins/systems/admin/systems/tabs_server.inc +++ b/trunk/gosa-plugins/systems/admin/systems/tabs_server.inc @@ -26,6 +26,8 @@ class servtabs extends tabs function servtabs($config, $data, $dn,$category) { + tabs::tabs($config, $data, $dn,$category); + /* Save dn */ $this->dn= $dn; $this->config= $config; -- 2.30.2