Code

Another fix for the XDRiver inheritance:
authorpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 2 Oct 2009 15:10:49 +0000 (15:10 +0000)
committerpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 2 Oct 2009 15:10:49 +0000 (15:10 +0000)
Use the drivernames as key in the XDrivers array,
so that on saving (not inherited) the attribute
is set properly
(#3020)

git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@14496 594d385d-05f5-0310-b6e9-bd551577e9d8

trunk/gosa-plugins/goto/admin/systems/goto/class_workstationService.inc

index 977da93fd5ae0179b43cc43f38030448f28caa55..7d0e3dc87508b99330565c0cbcc372ce12e7fb3f 100644 (file)
@@ -80,7 +80,9 @@ class workservice extends plugin
     }
 
     /* Get list of available xdrivers */
-    $this->XDrivers = $this->getListOfXDrivers();
+    foreach($this->getListOfXDrivers() as $xdriver) {
+      $this->XDrivers[$xdriver] = $xdriver;
+    }
 
     array_unshift($this->XDrivers, "["._("unknown")."]");