--- adminrole.module.orig	Mon May 14 09:22:19 2007
+++ adminrole.module	Mon May 14 09:17:52 2007
@@ -61,12 +61,14 @@
 
 function adminrole_admin_settings() {
   $form = array();
+  $u_roles = user_roles();
+  ksort($u_roles);
   $form['adminrole_adminrole'] = array(
     '#type' => 'select',
     '#title' => t('Admin Roles'),
     '#default_value' => variable_get('adminrole_adminrole', 0),
     '#description' => t("Which Role is Admin?"),
-    '#options' => array_merge(array(0 => t('-- Please Select One --')), user_roles()),
+    '#options' => array_merge(array(0 => t('-- Please Select One --')), $u_roles),
   );
   return system_settings_form($form);
 }
