remove echo statement when delete document from fulltext index

This commit is contained in:
Uwe Steinmann 2013-11-24 18:19:42 +01:00
parent 05d51c05bd
commit 76701aed03

View File

@ -63,7 +63,6 @@ if($settings->_enableFullSearch) {
function removeFromIndex($index, $document) {
if($hits = $index->find('document_id:'.$document->getId())) {
$hit = $hits[0];
echo $hit->id;
$index->delete($hit->id);
$index->commit();
}