? 530910-field-boost-settings.patch
? schema-fr.xml
Index: apachesolr_search.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/apachesolr_search.admin.inc,v
retrieving revision 1.1.2.20
diff -u -p -r1.1.2.20 apachesolr_search.admin.inc
--- apachesolr_search.admin.inc	2 Jul 2009 22:00:33 -0000	1.1.2.20
+++ apachesolr_search.admin.inc	25 Jul 2009 22:58:19 -0000
@@ -145,11 +145,11 @@ function apachesolr_search_settings_form
       '#description' => t('Specify here which fields are more important when searching. Give a field a greater numeric value to make it more important. If you omit a field, it will not be searched.'),
     );
     foreach ($fields as $field_name => $field) {
-      // Only indexed feids are searchable.
-      if ($field->schema{1} == 'I') {
-        // By default we only show text fields.  Use hook_form_alter to change.
+      // Only indexed fields are searchable.
+      if ($field->schema{0} == 'I') {
+        // By default we only show character fields.  Use hook_form_alter to change.
         $form['apachesolr_search_query_fields'][$field_name] = array(
-          '#access' => $field->type == 'text',
+          '#access' => $field->type == 'text' || $field->type == 'string',
           '#type' => 'select',
           '#options' => $weights,
           '#title' => apachesolr_field_name_map($field_name),
