Bug #94898
closedsearch_field loses its value after editing
100%
Description
Steps to reproduce:
1) Search for a string in a recordlist in BE
2) Click to "edit" a cord and close the record
3) search_field is empty again
Updated by Martin Neumann over 3 years ago
- Subject changed from search_field loses its value after editiing to search_field loses its value after editing
Updated by Martin Neumann over 3 years ago
This has to be fixed in this line:
/sysext/recordlist/Classes/Controller/RecordListController.php:207
from
$this->search_field = (string)($parsedBody['search_field'] ?? $queryParams['search_field'] ?? '');
to
$this->search_field = (string)($parsedBody['search_field'] ?? $queryParams['search_field'] ?? $this->search_field);
(as $this->search_field is already set to '' a few lines above - or to the value from session if there was one)
Updated by Gerrit Code Review over 3 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/70613
Updated by Gerrit Code Review over 3 years ago
- Status changed from New to Under Review
Patch set 1 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/72051
Updated by Martin Neumann over 3 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 1cfc588be7b85cca40756574d350ee7da74a7396.
Updated by Wolfgang Twaroch 7 months ago
- Related to Bug #105219: Search field in file list looses it value after deleting a file added