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.
Actions