Code

Added Inherit all button to Workstation Servive - testing.
[gosa.git] / plugins / admin / systems / tabs_winstation.inc
index 062eac6ee989d3675d89ac9e694c59a27054c46e..3f03437fa837401b896944d1e758ae91e0e2d0fb 100644 (file)
@@ -18,14 +18,24 @@ class wintabs extends tabs
   {
     /* Check for new 'dn', in order to propagate the
        'dn' to all plugins */
+
+    /* add $ to end of name if mising */
     $baseobject= $this->by_object['wingeneric'];
-    $this->dn= "cn=$baseobject->cn,ou=winstations,ou=systems,".$baseobject->base;
+    if(!preg_match("/\\\$\$/",$baseobject->cn)){
+      $baseobject->cn .= "$";
+    }
+
+    $this->dn= "uid=$baseobject->cn,".get_winstations_ou().$baseobject->base;
+    $baseobject->dn= $this->dn;
 
     foreach ($this->by_object as $key => $obj){
       $this->by_object[$key]->dn= $this->dn;
     }
 
     tabs::save(TRUE);
+
+    /* Fix tagging if needed */
+    $baseobject->handle_object_tagging();
   }
 
 }