From 7ec4ae32ad214a6039a05e534a35cdbe6156eba3 Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Tue, 21 Dec 2010 09:44:37 +0000 Subject: [PATCH] MINOR: removed var_dumps() --- code/DocumentationSearch.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/DocumentationSearch.php b/code/DocumentationSearch.php index ae35f15..7f839ca 100644 --- a/code/DocumentationSearch.php +++ b/code/DocumentationSearch.php @@ -173,7 +173,6 @@ class DocumentationSearch { $count++; if(!is_dir($page->getPath())) { - var_dump("Indexing ". $page->getPath()); $doc = Zend_Search_Lucene_Document_Html::loadHTML($page->getHtml()); $doc->addField(Zend_Search_Lucene_Field::Text('Title', $page->getTitle())); $doc->addField(Zend_Search_Lucene_Field::Keyword('Version', $page->getVersion())); @@ -181,9 +180,6 @@ class DocumentationSearch { $doc->addField(Zend_Search_Lucene_Field::Keyword('Path', $page->getPath())); $index->addDocument($doc); } - else { - var_dump("Not Indexing ". $page->getPath()); - } } }