Actions
Bug #81164
closedIndexed Search appends ?L=0 to URLs of search results
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Indexed Search
Target version:
Start date:
2017-05-07
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
On Location Sprint
Description
The link-urls on the result page of indexed search are appended by "?L=0" (monolingual site).
I found a fix on https://forum.typo3.org/index.php/t/214259/ :
In TYPO3 8.7.1 change line 1314 of /sysext/indexed_search/Classes/Controller/SearchController.php from ...
$urlParameters['L'] = $row['sys_language_uid'];
...to: if ($row['sys_language_uid']) {
$urlParameters['L'] = $row['sys_language_uid'];
}
Actions