Bug #38548
closedIncorrect search-results when searching for part of word
0%
Description
In function searchWord the self:: is missing for the 2 constants in rows 906 and 907.
$wildcard_left = ($mode & WILDCARD_LEFT) ? '%' : '';
$wildcard_right = ($mode & WILDCARD_RIGHT) ? '%' : '';
should be
$wildcard_left = ($mode & self::WILDCARD_LEFT) ? '%' : '';
$wildcard_right = ($mode & self::WILDCARD_RIGHT) ? '%' : '';
Updated by Andreas Kießling over 12 years ago
I confirm this bug. It is in in both classes: tx_indexedsearch and Tx_IndexedSearch_Domain_Repository_IndexSearchRepository
Updated by Gerrit Code Review over 12 years ago
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/13215
Updated by Gerrit Code Review over 12 years ago
Patch set 1 for branch TYPO3_4-7 has been pushed to the review server.
It is available at http://review.typo3.org/13486
Updated by Oliver Hader over 11 years ago
- Project changed from 1382 to TYPO3 Core
Updated by Alexander Opitz almost 10 years ago
- Status changed from New to Closed
- TYPO3 Version set to 4.5
- Is Regression set to No
Patch was merged long ago. Andreas told me that this is fixed, so closing issue.