Code

Added gotoModules to attributes.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 23 Jan 2007 10:22:52 +0000 (10:22 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 23 Jan 2007 10:22:52 +0000 (10:22 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5592 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/systems/class_terminalStartup.inc

index ddf9c48365170d707b3627aef5716d7a449d658c..d84b8c229b2de249f989d8a128ec4b3681173574 100644 (file)
@@ -24,7 +24,7 @@ class termstartup extends plugin
 
 
   /* attribute list for save action */
-  var $attributes= array("gotoLdapServer", "gotoBootKernel", "gotoKernelParameters");
+  var $attributes= array("gotoLdapServer", "gotoBootKernel", "gotoKernelParameters","gotoModules");
   var $objectclasses= array("GOhard");
 
   /* Helper */
@@ -40,6 +40,7 @@ class termstartup extends plugin
 
     /* Get arrays */
     foreach (array("gotoModules") as $val){
+      $this->$val = array();
       if (isset($this->attrs["$val"]["count"])){
         for ($i= 0; $i<$this->attrs["count"]; $i++){
           if (isset($this->attrs["$val"][$i])){
@@ -393,6 +394,7 @@ class termstartup extends plugin
     /* Write back to ldap */
     $ldap= $this->config->get_ldap_link();
     $ldap->cd($this->dn);
+    
     $this->cleanup();
     $ldap->modify ($this->attrs);