diff --git a/typo3/sysext/core/Classes/DataHandling/DataHandler.php b/typo3/sysext/core/Classes/DataHandling/DataHandler.php index de95dab7416c39a87c8f7e345b9eb8fbd350d7ec..563c2fd96df1aa507790936f481a19d1f2d349f7 100644 --- a/typo3/sysext/core/Classes/DataHandling/DataHandler.php +++ b/typo3/sysext/core/Classes/DataHandling/DataHandler.php @@ -8074,7 +8074,12 @@ class DataHandler */ public function noRecordsFromUnallowedTables($inList) { - $inList = trim($this->rmComma(trim($inList))); + if (strpos($inList, ',') !== false) { + $pids = GeneralUtility::intExplode(',', $inList, true); + } else { + $inList = trim($this->rmComma(trim($inList))); + $pids = [$inList]; + } if ($inList && !$this->admin) { foreach ($GLOBALS['TCA'] as $table => $_) { $query = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable($table); @@ -8085,7 +8090,7 @@ class DataHandler ->from($table) ->where($query->expr()->in( 'pid', - $query->createNamedParameter($inList, Connection::PARAM_INT_ARRAY) + $query->createNamedParameter($pids, Connection::PARAM_INT_ARRAY) )) ->execute() ->fetchColumn(0);