Skip to content

Commit

Permalink
Backport of tomasnorre#1009
Browse files Browse the repository at this point in the history
  • Loading branch information
Hawkeye1909 authored Jul 30, 2024
1 parent 3b2c544 commit 4ad4df5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Classes/Service/ConfigurationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,10 @@ private function expandParameters(array $paramArray, int $pid): array

if (! empty($addTable)) {
// TODO: Check if this works as intended!
$queryBuilder->add('from', $addTable);
$addTables = GeneralUtility::trimExplode(',', $addTable, true);
foreach ($addTables as $table) {
$queryBuilder->from($table);
}
}
$transOrigPointerField = $GLOBALS['TCA'][$subpartParams['_TABLE']]['ctrl']['transOrigPointerField'];

Expand Down

0 comments on commit 4ad4df5

Please sign in to comment.