Actions
Bug #61679
closedmissing return indexed_search searchMetaphone
Start date:
2014-09-17
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
Description
Hi there,
there is a missing return in indexed_search searchMetaphone method.
There is just return $res; missing. This prevents the metaphone search for returning results.
--- SearchFormController.php.ori 2014-09-17 13:04:12.000000000 0200
++ SearchFormController.php 2014-09-17 12:36:52.000000000 0200@ -958,6 +958,7
@
$wSel = 'IW.metaphone=' . $sWord;
$this->wSelClauses[] = $wSel;
$res = $this->execPHashListQuery($wSel, ' AND is_stopword=0');
return $res;
}
/**
Actions