Code

Added conflict with kolab
[gosa.git] / plugins / admin / systems / class_ServiceAddDialog.inc
index a5a284e68dc4405c5841d2818a36a7dec75cad2d..86ab833aca2c9e22bf54c1a3b18e8cb64dcb7292 100644 (file)
@@ -19,7 +19,9 @@ class ServiceAddDialog extends plugin{
   function execute()
   {
     $smarty = get_smarty();
-    $smarty->assign("Services",$this->parent->getAllUnusedServices());
+    $services = $this->parent->getAllUnusedServices();
+    natcasesort($services);
+    $smarty->assign("Services",$services);
     return($smarty->fetch(get_template_path("ServiceAddDialog.tpl", TRUE,dirname(__FILE__))));
  }