Project

General

Profile

Actions

Bug #81164

closed

Indexed Search appends ?L=0 to URLs of search results

Added by Benjamin Robinson almost 7 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Indexed Search
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'];
        }


Related issues 2 (1 open1 closed)

Related to TYPO3 Core - Bug #30852: Multilingual search in translated pages: Results of default language always linking to current language Closed2011-10-12

Actions
Related to TYPO3 Core - Bug #81986: indexed_search generates duplicated results for same pageNew2017-07-27

Actions
Actions

Also available in: Atom PDF