From: cajus Date: Tue, 19 Feb 2008 17:22:53 +0000 (+0000) Subject: Move cn to target X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=12596aaeb2956ec8c6248f3a4ff0a5548a453982;p=gosa.git Move cn to target git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8972 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/systems/admin/systems/tabs_component.inc b/gosa-plugins/systems/admin/systems/tabs_component.inc index ff0c69d9a..25f34f261 100644 --- a/gosa-plugins/systems/admin/systems/tabs_component.inc +++ b/gosa-plugins/systems/admin/systems/tabs_component.inc @@ -14,6 +14,9 @@ class componenttabs extends tabs function save_object($save_current= FALSE) { tabs::save_object($save_current); + + $base_obj = $this->by_object['componentGeneric']; + $baseobject->netConfigDNS->cn= $baseobject->cn; } diff --git a/gosa-plugins/systems/admin/systems/tabs_server.inc b/gosa-plugins/systems/admin/systems/tabs_server.inc index 322851b61..d19ab53d7 100644 --- a/gosa-plugins/systems/admin/systems/tabs_server.inc +++ b/gosa-plugins/systems/admin/systems/tabs_server.inc @@ -37,6 +37,9 @@ class servtabs extends tabs function save_object($save_current= FALSE) { tabs::save_object($save_current); + + $base_obj = $this->by_object['servgeneric']; + $baseobject->netConfigDNS->cn= $baseobject->cn; }