? SolrPhpClient
Index: apachesolr.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/apachesolr.admin.inc,v
retrieving revision 1.1.2.28.2.16
diff -u -p -r1.1.2.28.2.16 apachesolr.admin.inc
--- apachesolr.admin.inc	10 Dec 2009 09:12:46 -0000	1.1.2.28.2.16
+++ apachesolr.admin.inc	11 Dec 2009 04:33:03 -0000
@@ -776,6 +776,9 @@ function apachesolr_batch_reindex_proces
   }
   // We can safely process the apachesolr_cron_limit nodes at a time without a timeout.
   $limit = variable_get('apachesolr_cron_limit', 50);
+  
+  // TODO REMOVE
+  $limit = 1;
 
   // Pull the total and remaining variables using apachesolr_search status function.
   // This is used to push the progress bar for each group of nodes being indexed.
Index: contrib/apachesolr_commentsearch/apachesolr_commentsearch.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/contrib/apachesolr_commentsearch/Attic/apachesolr_commentsearch.module,v
retrieving revision 1.1.2.5
diff -u -p -r1.1.2.5 apachesolr_commentsearch.module
--- contrib/apachesolr_commentsearch/apachesolr_commentsearch.module	10 Dec 2009 09:34:02 -0000	1.1.2.5
+++ contrib/apachesolr_commentsearch/apachesolr_commentsearch.module	11 Dec 2009 04:33:03 -0000
@@ -25,7 +25,6 @@ function apachesolr_commentsearch_node_t
   $result = db_query("SELECT c.*, u.name AS registered_name FROM {comments} c INNER JOIN {users} u ON c.uid = u.uid WHERE c.nid = %d", $node->nid);
   while ($comment = db_fetch_object($result)) {
     $text = check_markup($comment->comment, $comment->format, FALSE);
-    $text = htmlspecialchars(html_entity_decode($text, ENT_NOQUOTES, 'UTF-8'), ENT_NOQUOTES, 'UTF-8');
 
     $document = new Apache_Solr_Document();
     // Comments have their status integers backwards compared to nodes.
