Author: rande
Date: 2010-04-19 20:58:36 +0200 (Mon, 19 Apr 2010)
New Revision: 29214

Modified:
   
plugins/sfSolrPlugin/branches/sf1.2/lib/indexer/sfLuceneDoctrineIndexerHandler.class.php
Log:
[sfSolrPlugin] fix iteration test

Modified: 
plugins/sfSolrPlugin/branches/sf1.2/lib/indexer/sfLuceneDoctrineIndexerHandler.class.php
===================================================================
--- 
plugins/sfSolrPlugin/branches/sf1.2/lib/indexer/sfLuceneDoctrineIndexerHandler.class.php
    2010-04-19 17:22:53 UTC (rev 29213)
+++ 
plugins/sfSolrPlugin/branches/sf1.2/lib/indexer/sfLuceneDoctrineIndexerHandler.class.php
    2010-04-19 18:58:36 UTC (rev 29214)
@@ -35,7 +35,7 @@
     
     $totalPages = ceil($count / $limit);
     
-    for ($page = $start_page; $page < $totalPages; $page++)
+    for ($page = $start_page; $page <= $totalPages; $page++)
     {
       
       $this->getSearch()->getEventDispatcher()->notifyUntil(new sfEvent($this, 
'lucene.indexing_loop', array(

-- 
You received this message because you are subscribed to the Google Groups 
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/symfony-svn?hl=en.

Reply via email to