Skip to content

Commit

Permalink
Merge pull request #197 from tpwd/bugfix/issue-195-empty-result
Browse files Browse the repository at this point in the history
[BUGFIX] Fix regression introduced in 5.1.0 (search was always empty)…
  • Loading branch information
christianbltr authored Oct 27, 2023
2 parents a398c17 + 7258335 commit e64d6f9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
ChangeLog

Version 5.1.1, 27 October 2023
[BUGFIX] Fix regression introduced in 5.1.0 (search was always empty), https://github.com/tpwd/ke_search/issues/195

Version 5.1.0, 20 October 2023
[FEATURE] Additional word characters: Allows searching for words containing e.g. dots or hyphens, https://github.com/tpwd/ke_search/issues/19
[TASK] Exclude all parameters (including filters) from cHash calculation, thanks to Uwe Hawkeye1909, https://github.com/tpwd/ke_search/issues/187
Expand Down
2 changes: 1 addition & 1 deletion Classes/Utility/AdditionalWordCharactersUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static function replaceAdditionalWordCharacters(string $content): string
{
$additionalWordCharacters = self::getAdditionalWordCharacters();
if (empty($additionalWordCharacters)) {
return '';
return $content;
}
foreach ($additionalWordCharacters as $additionalWordCharacter) {
$content = str_replace(
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'title' => 'Faceted Search',
'description' => 'Faceted fulltext search for TYPO3. Fast, flexible and easy to install and use. Indexes content directly from the databases. Features faceting / filtering, file indexing, images in result lists and respects access restrictions.',
'category' => 'plugin',
'version' => '5.1.0',
'version' => '5.1.1',
'state' => 'stable',
'author' => 'ke_search Dev Team',
'author_email' => 'ke_search@tpwd.de',
Expand Down

0 comments on commit e64d6f9

Please sign in to comment.