Actions
Bug #86336
closedsearch_result_labels setting ignored when executing System Action
Start date:
2018-09-20
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When creating a SQL Query Action for example to export a CSV, the setting `Use formatted strings, labels and dates instead of original values for results` is correctly used in the Query Editor, but when executing the Action, it is ignored and always enabled.
In /typo3/sysext/sys_action/Classes/ActionTask.php
on line 814
$GLOBALS['SOBE']->MOD_SETTINGS['search_result_labels'] = 1;
should be
$GLOBALS['SOBE']->MOD_SETTINGS['search_result_labels'] = $sql_query['qC']['search_result_labels'];
Updated by Sascha Löffler about 6 years ago
Same case probably for TYPO3 v9 as well since the code is the same.
But haven't verified it.
Updated by Sascha Löffler about 6 years ago
- Status changed from New to In Progress
- Assignee set to Sascha Löffler
Updated by Gerrit Code Review about 6 years ago
- Status changed from In Progress to Under Review
Patch set 1 for branch TYPO3_8-7 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/58364
Updated by Sascha Löffler about 6 years ago
- Related to Bug #86396: search_result_labels setting ignored when executing System Action added
Updated by Tymoteusz Motylewski about 6 years ago
- Status changed from Under Review to Closed
closed as duplicate of https://forge.typo3.org/issues/86396
Actions