Hi all,
i found the error in the class: Zend_Search_Lucene_Index_SegmentInfo (/library/Zend/Search/Lucene/Index/SegmentInfo.php) in line 690:
There must be an '===' operator insead of '=='
i changed the line from
PHP Code:
if ($termFieldNum == $searchField && $termValue == $term->text) {
to
PHP Code:
if ($termFieldNum === $searchField && $termValue === $term->text) {