From 8b5bc662cce22cd09d929e9e72cbd9ac4ac215fe Mon Sep 17 00:00:00 2001
From: Benni Mack <benni@typo3.org>
Date: Thu, 16 Jan 2020 13:29:08 +0100
Subject: [PATCH] [BUGFIX] Hand over new parameters to DataHandler clones
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

DataHandler creates new dataHandler instances in itself
which do not hand over the custom parameters used in the
outermost instance.

The change adds the two parameter which were added in
a performance sprint for TYPO3 v8 initially.

Resolves: #76215
Releases: master, 9.5
Change-Id: I5560055e6c314cd136ab818241b1558f9718358a
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/62931
Reviewed-by: Susanne Moog <look@susi.dev>
Reviewed-by: Felix P. <f.pachowsky@neusta.de>
Reviewed-by: Sascha Rademacher <sascha.rademacher+typo3@gmail.com>
Reviewed-by: Henning Liebe <h.liebe@neusta.de>
Reviewed-by: Frank Nägler <frank.naegler@typo3.org>
Reviewed-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Frank Nägler <frank.naegler@typo3.org>
Tested-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
---
 typo3/sysext/core/Classes/DataHandling/DataHandler.php | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/typo3/sysext/core/Classes/DataHandling/DataHandler.php b/typo3/sysext/core/Classes/DataHandling/DataHandler.php
index 1578c62d59a5..a9028ee114d5 100644
--- a/typo3/sysext/core/Classes/DataHandling/DataHandler.php
+++ b/typo3/sysext/core/Classes/DataHandling/DataHandler.php
@@ -5400,6 +5400,8 @@ class DataHandler implements LoggerAwareInterface
         // make sure the isImporting flag is transferred, so all hooks know if
         // the current process is an import process
         $copyTCE->isImporting = $this->isImporting;
+        $copyTCE->bypassAccessCheckForRecords = $this->bypassAccessCheckForRecords;
+        $copyTCE->bypassWorkspaceRestrictions = $this->bypassWorkspaceRestrictions;
         return $copyTCE;
     }
 
-- 
GitLab