Code

Sort list of objectgroups
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 11 Apr 2008 12:51:50 +0000 (12:51 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 11 Apr 2008 12:51:50 +0000 (12:51 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10357 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/goto/admin/systems/goto/class_SelectDeviceType.inc

index 5b9ebfb20c08bbcfabe35c5898f223bdd0a054fc..38ebc8dff11ce02af9ddce448988a9b66e7820cf 100644 (file)
@@ -25,6 +25,7 @@ class SelectDeviceType extends plugin
     while($attrs = $ldap->fetch()){
       $this->ObjectGroups[$attrs['dn']]= $attrs['cn'][0];
     }
+    asort($this->ObjectGroups);
 
     $this->SystemTypes =array("workstation"=>_("Workstation"), "terminal"=>_("Terminal"), "server"=>_("Server"));
   }