summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9ae2165)
raw | patch | inline | side by side (parent: 9ae2165)
author | psc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 2 Oct 2009 15:10:49 +0000 (15:10 +0000) | ||
committer | psc <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
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 | patch | blob | history |
diff --git a/trunk/gosa-plugins/goto/admin/systems/goto/class_workstationService.inc b/trunk/gosa-plugins/goto/admin/systems/goto/class_workstationService.inc
index 977da93fd5ae0179b43cc43f38030448f28caa55..7d0e3dc87508b99330565c0cbcc372ce12e7fb3f 100644 (file)
}
/* Get list of available xdrivers */
- $this->XDrivers = $this->getListOfXDrivers();
+ foreach($this->getListOfXDrivers() as $xdriver) {
+ $this->XDrivers[$xdriver] = $xdriver;
+ }
array_unshift($this->XDrivers, "["._("unknown")."]");