Actions
Bug #84560
closedLocalization View in List Module with search string broken
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend API
Target version:
-
Start date:
2018-03-29
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If I search in the List Module with enabled localization view the localized elements are not shown.
I think this behavior is implemented since #77664
The problem is here:
before this patch:
if ($this->localizationView && $l10nEnabled ) {
after this patch:
if ($this->localizationView && $l10nEnabled && $this->searchString === '') {
But the search for localized elements only work if
mod.web_list.hideTranslations
is empty.
In my opinion, an unusual constellation.
Updated by Susanne Moog over 4 years ago
- Status changed from New to Closed
The search in the list module takes the list module settings into account (and displays results again in the list module). Hiding translations results in these translations not being displayed in the list module independent of whether or not the list module is displaying search results or a page based list. This is the wanted and implemented behaviour.
Actions