Index: apachesolr.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/apachesolr.module,v
retrieving revision 1.1.2.12.2.72
diff -u -p -r1.1.2.12.2.72 apachesolr.module
--- apachesolr.module	11 Dec 2008 16:15:06 -0000	1.1.2.12.2.72
+++ apachesolr.module	11 Dec 2008 21:21:57 -0000
@@ -176,8 +176,10 @@ function apachesolr_index_page() {
     $output .= '<p>' . t('Number of fields in index: @num', array('@num' => count($fields))) . "</p>\n";
     $rows = array();
     foreach ($fields as $name => $field) {
-      $rows[] = array($name, $field->type, isset($field->index) ? $field->distinct : t('Not indexed'));
+      // TODO: try to map the name to something more meaningful.
+      $rows[$name] = array($name, $field->type, isset($field->index) ? $field->distinct : t('Not indexed'));
     }
+    ksort($rows);
     // Display the table of Field names, Index Types, and term counts.
     $output .= theme('table', array(t('Field name'), t('Index type'), t('Distinct terms')), $rows);
   }
Index: apachesolr_search.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/Attic/apachesolr_search.admin.inc,v
retrieving revision 1.1.2.3
diff -u -p -r1.1.2.3 apachesolr_search.admin.inc
--- apachesolr_search.admin.inc	11 Dec 2008 16:15:06 -0000	1.1.2.3
+++ apachesolr_search.admin.inc	11 Dec 2008 21:21:57 -0000
@@ -29,7 +29,7 @@ function apachesolr_search_settings_page
 /**
  * Form builder function to set date bias.
  */
-function apachesolr_search_bias_form($fields) {
+function apachesolr_search_bias_form($form_state) {
 
   $date_settings = variable_get('apacehsolr_search_date_boost', '4:3.0');
   $comment_settings = variable_get('apacehsolr_search_comment_boost', '4:3.0');
@@ -63,7 +63,7 @@ function apachesolr_search_bias_form($fi
 /**
  * Form builder function to set query field weights.
  */
-function apachesolr_search_settings_form($fields) {
+function apachesolr_search_settings_form($form_state, $fields) {
   $form = array();
 
   // get the current weights
