Index: apachesolr.index.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/apachesolr.index.inc,v
retrieving revision 1.1.2.22
diff -u -p -r1.1.2.22 apachesolr.index.inc
--- apachesolr.index.inc	27 Dec 2009 16:47:37 -0000	1.1.2.22
+++ apachesolr.index.inc	6 Apr 2010 04:33:14 -0000
@@ -233,7 +233,7 @@ function apachesolr_add_tags_to_document
   foreach ($matches[1] as $key => $tag) {
     // We don't want to index links auto-generated by the url filter.
     if ($tag != 'a' || !preg_match('@(?:http://|https://|ftp://|mailto:|smb://|afp://|file://|gopher://|news://|ssl://|sslv2://|sslv3://|tls://|tcp://|udp://|www\.)[a-zA-Z0-9]+@', $matches[2][$key])) {
-      $document->{$tags_to_index[$tag]} .= ' '. $matches[2][$key];
+      $document->{$tags_to_index[strtolower($tag)]} .= ' '. $matches[2][$key];
     }
   }
 }
