--- C:/_work/_drupal5modules/adminrole/adminrole.module	Wed Jun 25 12:56:13 2008
+++ C:/_wamp/www/mikado/sites/all/modules/adminrole/adminrole.module	Mon Feb 02 15:39:35 2009
@@ -65,16 +65,23 @@
 
  function adminrole_admin_settings() {
    $form = array();
    $u_roles = user_roles();
    ksort($u_roles);
+   
+   $options = array();
+   $options[] = t('-- Please Select One --');
+   foreach ($u_roles as $key => $value) {
+   $options[$key] = $value;
+   }
+   
    $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 --')), $u_roles),
+    '#options' => $options,
    );
    return system_settings_form($form);
  }
 
 
