diff --git a/typo3/sysext/core/Classes/DataHandling/DataHandler.php b/typo3/sysext/core/Classes/DataHandling/DataHandler.php
index 38333453172bcf44de80b2860d98a96622a6819a..d2d8266bbbc70b2990d5062f50ded4134c9dff86 100644
--- a/typo3/sysext/core/Classes/DataHandling/DataHandler.php
+++ b/typo3/sysext/core/Classes/DataHandling/DataHandler.php
@@ -532,13 +532,6 @@ class DataHandler implements LoggerAwareInterface
      */
     protected $remapStackActions = [];
 
-    /**
-     * Array used for executing post-processing on the reference index
-     *
-     * @var array
-     */
-    protected $remapStackRefIndex = [];
-
     /**
      * Registry object to gather reference index update requests and perform updates after
      * main processing has been done. The first call to start() instantiates this object.
@@ -4790,6 +4783,7 @@ class DataHandler implements LoggerAwareInterface
      */
     public function deleteRecord($table, $uid, $noRecordCheck = false, $forceHardDelete = false, $undeleteRecord = false)
     {
+        $currentUserWorkspace = (int)$this->BE_USER->workspace;
         $uid = (int)$uid;
         if (!$GLOBALS['TCA'][$table] || !$uid) {
             $this->log($table, $uid, SystemLogDatabaseAction::DELETE, 0, SystemLogErrorClassification::USER_ERROR, 'Attempt to delete record without delete-permissions. [' . $this->BE_USER->errorMsg . ']');
@@ -4895,7 +4889,7 @@ class DataHandler implements LoggerAwareInterface
         // Update reference index with table/uid on left side (recuid)
         $this->updateRefIndex($table, $uid);
         // Update reference index with table/uid on right side (ref_uid). Important if children of a relation are deleted / undeleted.
-        $this->registerReferenceUpdatesForReferencesToItem($table, $uid);
+        $this->referenceIndexUpdater->registerUpdateForReferencesToItem($table, $uid, $currentUserWorkspace);
     }
 
     /**
@@ -5421,7 +5415,7 @@ class DataHandler implements LoggerAwareInterface
         $this->discardRecordRelations($table, $versionRecord);
         $this->hardDeleteSingleRecord($table, (int)$versionRecord['uid']);
         $this->deletedRecords[$table][] = (int)$versionRecord['uid'];
-        $this->dropReferenceIndexRowsForRecord($table, (int)$versionRecord['uid']);
+        $this->registerReferenceIndexRowsForDrop($table, (int)$versionRecord['uid'], $userWorkspace);
         $this->getRecordHistoryStore()->deleteRecord($table, (int)$versionRecord['uid'], $this->correlationId);
         $this->log(
             $table,
@@ -6201,18 +6195,10 @@ class DataHandler implements LoggerAwareInterface
                 }
             }
         }
-        // Processes the reference index updates of the remap stack:
-        foreach ($this->remapStackRefIndex as $table => $idArray) {
-            foreach ($idArray as $id) {
-                $this->updateRefIndex($table, $id);
-                unset($this->remapStackRefIndex[$table][$id]);
-            }
-        }
         // Reset:
         $this->remapStack = [];
         $this->remapStackRecords = [];
         $this->remapStackActions = [];
-        $this->remapStackRefIndex = [];
     }
 
     /**
@@ -6304,18 +6290,6 @@ class DataHandler implements LoggerAwareInterface
         ];
     }
 
-    /**
-     * Adds a table-id-pair to the reference index remapping stack.
-     *
-     * @param string $table
-     * @param int $id
-     * @internal should only be used from within DataHandler
-     */
-    public function addRemapStackRefIndex($table, $id)
-    {
-        $this->remapStackRefIndex[$table][$id] = $id;
-    }
-
     /**
      * If a parent record was versionized on a workspace in $this->process_datamap,
      * it might be possible, that child records (e.g. on using IRRE) were affected.
@@ -7272,36 +7246,15 @@ class DataHandler implements LoggerAwareInterface
      *
      * @param string $table Table name
      * @param int $uid Record UID
+     * @param int $workspace Workspace the record lives in
      * @internal should only be used from within DataHandler
      */
-    public function updateRefIndex($table, $uid): void
+    public function updateRefIndex($table, $uid, int $workspace = null): void
     {
-        $this->referenceIndexUpdater->registerForUpdate((string)$table, (int)$uid, (int)$this->BE_USER->workspace);
-    }
-
-    /**
-     * Find reference index rows pointing to given table/uid combination and register them for update.
-     * Important in delete scenarios where a child is deleted to make sure any references to this child are dropped, too.
-     *
-     * @param string $table Table name, used as ref_table
-     * @param int $uid Record uid, used as ref_uid
-     */
-    protected function registerReferenceUpdatesForReferencesToItem(string $table, int $uid): void
-    {
-        $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('sys_refindex');
-        $statement = $queryBuilder
-            ->select('tablename', 'recuid')
-            ->from('sys_refindex')
-            ->where(
-                $queryBuilder->expr()->eq('ref_table', $queryBuilder->createNamedParameter($table, \PDO::PARAM_STR)),
-                $queryBuilder->expr()->eq('ref_uid', $queryBuilder->createNamedParameter($uid, \PDO::PARAM_INT)),
-                $queryBuilder->expr()->eq('deleted', $queryBuilder->createNamedParameter(0, \PDO::PARAM_INT)),
-                $queryBuilder->expr()->eq('workspace', $queryBuilder->createNamedParameter((int)$this->BE_USER->workspace, \PDO::PARAM_INT))
-            )
-            ->execute();
-        while ($row = $statement->fetch()) {
-            $this->updateRefIndex($row['tablename'], (int)$row['recuid']);
+        if ($workspace === null) {
+            $workspace = (int)$this->BE_USER->workspace;
         }
+        $this->referenceIndexUpdater->registerForUpdate((string)$table, (int)$uid, $workspace);
     }
 
     /**
@@ -7312,25 +7265,11 @@ class DataHandler implements LoggerAwareInterface
      *
      * @param string $table Table name, used as tablename and ref_table
      * @param int $uid Record uid, used as recuid and ref_uid
+     * @param int $workspace Workspace the record lives in
      */
-    protected function dropReferenceIndexRowsForRecord(string $table, int $uid): void
+    public function registerReferenceIndexRowsForDrop(string $table, int $uid, int $workspace): void
     {
-        $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('sys_refindex');
-        $queryBuilder->delete('sys_refindex')
-            ->where(
-                $queryBuilder->expr()->eq('workspace', $queryBuilder->createNamedParameter((int)$this->BE_USER->workspace, \PDO::PARAM_INT)),
-                $queryBuilder->expr()->orX(
-                    $queryBuilder->expr()->andX(
-                        $queryBuilder->expr()->eq('tablename', $queryBuilder->createNamedParameter($table)),
-                        $queryBuilder->expr()->eq('recuid', $queryBuilder->createNamedParameter($uid, \PDO::PARAM_INT))
-                    ),
-                    $queryBuilder->expr()->andX(
-                        $queryBuilder->expr()->eq('ref_table', $queryBuilder->createNamedParameter($table)),
-                        $queryBuilder->expr()->eq('ref_uid', $queryBuilder->createNamedParameter($uid, \PDO::PARAM_INT))
-                    )
-                )
-            )
-            ->execute();
+        $this->referenceIndexUpdater->registerForDrop($table, $uid, $workspace);
     }
 
     /*********************************************
diff --git a/typo3/sysext/core/Classes/DataHandling/ReferenceIndexUpdater.php b/typo3/sysext/core/Classes/DataHandling/ReferenceIndexUpdater.php
index 18bb762eb13d5a950e8d8c382d6e0a29b35da352..806a800d1c9d05eac462fdce03c5c40ebd3bc223 100644
--- a/typo3/sysext/core/Classes/DataHandling/ReferenceIndexUpdater.php
+++ b/typo3/sysext/core/Classes/DataHandling/ReferenceIndexUpdater.php
@@ -18,6 +18,7 @@ declare(strict_types=1);
 namespace TYPO3\CMS\Core\DataHandling;
 
 use TYPO3\CMS\Backend\Utility\BackendUtility;
+use TYPO3\CMS\Core\Database\ConnectionPool;
 use TYPO3\CMS\Core\Database\ReferenceIndex;
 use TYPO3\CMS\Core\Utility\GeneralUtility;
 
@@ -38,6 +39,23 @@ class ReferenceIndexUpdater
      */
     protected $updateRegistry = [];
 
+    /**
+     * [ workspaceId => [ tableName => [
+     *      'uid' => uid,
+     *      'targetWorkspace' => $targetWorkspace
+     * ] ] ]
+     *
+     * @var array<int, array<string, array<int, array<string, string|int>>>>
+     */
+    protected $updateRegistryToItem = [];
+
+    /**
+     * [ workspaceId => [ tableName => [ uid ] ] ]
+     *
+     * @var array<int, array<string, array<int, int>>>
+     */
+    protected $dropRegistry = [];
+
     /**
      * Register a workspace/table/uid row for update
      *
@@ -61,11 +79,123 @@ class ReferenceIndexUpdater
         }
     }
 
+    /**
+     * Find reference index rows pointing to given table/uid combination and register them for update. Important in
+     * delete and publish scenarios where a child is deleted to make sure any references to this child are dropped, too.
+     * In publish scenarios reference index may exist for a non live workspace, but should be updated for live workspace.
+     * The optional $targetWorkspace argument is used for this.
+     *
+     * @param string $table Table name, used as ref_table
+     * @param int $uid Record uid, used as ref_uid
+     * @param int $workspace The workspace given record lives in
+     * @param int $targetWorkspace The target workspace the record has been swapped to
+     */
+    public function registerUpdateForReferencesToItem(string $table, int $uid, int $workspace, int $targetWorkspace = null): void
+    {
+        if ($workspace && !BackendUtility::isTableWorkspaceEnabled($table)) {
+            // If a user is in some workspace and changes relations of not workspace aware
+            // records, the reference index update needs to be performed as if the user
+            // is in live workspace. This is detected here and the update is registered for live.
+            $workspace = 0;
+        }
+        if ($targetWorkspace === null) {
+            $targetWorkspace = $workspace;
+        }
+        if (!isset($this->updateRegistryToItem[$workspace][$table])) {
+            $this->updateRegistryToItem[$workspace][$table] = [];
+        }
+        $recordAndTargetWorkspace = [
+            'uid' => $uid,
+            'targetWorkspace' => $targetWorkspace
+        ];
+        if (!in_array($recordAndTargetWorkspace, $this->updateRegistryToItem[$workspace][$table], true)) {
+            $this->updateRegistryToItem[$workspace][$table][] = $recordAndTargetWorkspace;
+        }
+    }
+
+    /**
+     * Delete rows from sys_refindex a table / uid combination is involved in:
+     * Either on left side (tablename + recuid) OR right side (ref_table + ref_uid).
+     * Useful in scenarios like workspace-discard where parents or children are hard deleted: The
+     * expensive updateRefIndex() does not need to be called since we can just drop straight ahead.
+     *
+     * @param string $table Table name, used as tablename and ref_table
+     * @param int $uid Record uid, used as recuid and ref_uid
+     * @param int $workspace Workspace the record lives in
+     */
+    public function registerForDrop(string $table, int $uid, int $workspace): void
+    {
+        if ($workspace && !BackendUtility::isTableWorkspaceEnabled($table)) {
+            // If a user is in some workspace and changes relations of not workspace aware
+            // records, the reference index update needs to be performed as if the user
+            // is in live workspace. This is detected here and the update is registered for live.
+            $workspace = 0;
+        }
+        if (!isset($this->dropRegistry[$workspace][$table])) {
+            $this->dropRegistry[$workspace][$table] = [];
+        }
+        if (!in_array($uid, $this->dropRegistry[$workspace][$table], true)) {
+            $this->dropRegistry[$workspace][$table][] = $uid;
+        }
+    }
+
     /**
      * Perform the reference index update operations
      */
     public function update(): void
     {
+        // Register updates to an item for update
+        foreach ($this->updateRegistryToItem as $workspace => $tableArray) {
+            foreach ($tableArray as $table => $recordArray) {
+                foreach ($recordArray as $item) {
+                    $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('sys_refindex');
+                    $statement = $queryBuilder
+                        ->select('tablename', 'recuid')
+                        ->from('sys_refindex')
+                        ->where(
+                            $queryBuilder->expr()->eq('ref_table', $queryBuilder->createNamedParameter($table)),
+                            $queryBuilder->expr()->eq('ref_uid', $queryBuilder->createNamedParameter($item['uid'], \PDO::PARAM_INT)),
+                            $queryBuilder->expr()->eq('deleted', $queryBuilder->createNamedParameter(0, \PDO::PARAM_INT)),
+                            $queryBuilder->expr()->eq('workspace', $queryBuilder->createNamedParameter($workspace, \PDO::PARAM_INT))
+                        )
+                        ->execute();
+                    while ($row = $statement->fetch()) {
+                        $this->registerForUpdate($row['tablename'], (int)$row['recuid'], $item['targetWorkspace']);
+                    }
+                }
+            }
+        }
+        $this->updateRegistryToItem = [];
+
+        // Drop rows from reference index if requested. Note this is performed *after* update-to-item, to
+        // find rows pointing to a record and register updates before rows are dropped. Needed if a record
+        // changes the workspace during publish: In this case all records pointing to the record in a workspace
+        // need to be registered for update for live workspace and after that the workspace rows can be dropped.
+        foreach ($this->dropRegistry as $workspace => $tableArray) {
+            foreach ($tableArray as $table => $uidArray) {
+                foreach ($uidArray as $uid) {
+                    $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('sys_refindex');
+                    $queryBuilder->delete('sys_refindex')
+                        ->where(
+                            $queryBuilder->expr()->eq('workspace', $queryBuilder->createNamedParameter($workspace, \PDO::PARAM_INT)),
+                            $queryBuilder->expr()->orX(
+                                $queryBuilder->expr()->andX(
+                                    $queryBuilder->expr()->eq('tablename', $queryBuilder->createNamedParameter($table)),
+                                    $queryBuilder->expr()->eq('recuid', $queryBuilder->createNamedParameter($uid, \PDO::PARAM_INT))
+                                ),
+                                $queryBuilder->expr()->andX(
+                                    $queryBuilder->expr()->eq('ref_table', $queryBuilder->createNamedParameter($table)),
+                                    $queryBuilder->expr()->eq('ref_uid', $queryBuilder->createNamedParameter($uid, \PDO::PARAM_INT))
+                                )
+                            )
+                        )
+                        ->execute();
+                }
+            }
+        }
+        $this->dropRegistry = [];
+
+        // Perform reference index updates
         $referenceIndex = GeneralUtility::makeInstance(ReferenceIndex::class);
         $referenceIndex->enableRuntimeCache();
         foreach ($this->updateRegistry as $workspace => $tableArray) {
diff --git a/typo3/sysext/workspaces/Classes/Hook/DataHandlerHook.php b/typo3/sysext/workspaces/Classes/Hook/DataHandlerHook.php
index 8fdeb49e6993030d2964a4ae2064fe52399f91c2..3ab46f91804e2f02eff2f84226708ed0718e2a86 100644
--- a/typo3/sysext/workspaces/Classes/Hook/DataHandlerHook.php
+++ b/typo3/sysext/workspaces/Classes/Hook/DataHandlerHook.php
@@ -24,7 +24,6 @@ use TYPO3\CMS\Core\Context\WorkspaceAspect;
 use TYPO3\CMS\Core\Database\Connection;
 use TYPO3\CMS\Core\Database\ConnectionPool;
 use TYPO3\CMS\Core\Database\Query\Restriction\DeletedRestriction;
-use TYPO3\CMS\Core\Database\ReferenceIndex;
 use TYPO3\CMS\Core\Database\RelationHandler;
 use TYPO3\CMS\Core\DataHandling\DataHandler;
 use TYPO3\CMS\Core\DataHandling\PlaceholderShadowColumnsResolver;
@@ -775,8 +774,6 @@ class DataHandlerHook
                 $dataHandler->log($table, $id, SystemLogGenericAction::UNDEFINED, 0, SystemLogErrorClassification::MESSAGE, 'Publishing successful for table "' . $table . '" uid ' . $id . '=>' . $swapWith, -1, [], $dataHandler->eventPid($table, $id, $swapVersion['pid']));
             }
 
-            // Update reference index of the live record:
-            $dataHandler->addRemapStackRefIndex($table, $id);
             // Set log entry for live record:
             $propArr = $dataHandler->getRecordPropertiesFromRow($table, $swapVersion);
             if (($propArr['t3ver_oid'] ?? 0) > 0) {
@@ -786,8 +783,6 @@ class DataHandlerHook
             }
             $theLogId = $dataHandler->log($table, $id, DatabaseAction::UPDATE, $propArr['pid'], SystemLogErrorClassification::MESSAGE, $label, 10, [$propArr['header'], $table . ':' . $id], $propArr['event_pid']);
             $dataHandler->setHistory($table, $id, $theLogId);
-            // Update reference index of the offline record:
-            $dataHandler->addRemapStackRefIndex($table, $swapWith);
             // Set log entry for offline record:
             $propArr = $dataHandler->getRecordPropertiesFromRow($table, $curVersion);
             if (($propArr['t3ver_oid'] ?? 0) > 0) {
@@ -824,12 +819,10 @@ class DataHandlerHook
                 $dataHandler->deleteEl($table, $swapWith, true, true);
             }
 
-            // Update reference index for live workspace too:
-            /** @var \TYPO3\CMS\Core\Database\ReferenceIndex $refIndexObj */
-            $refIndexObj = GeneralUtility::makeInstance(ReferenceIndex::class);
-            $refIndexObj->setWorkspaceId(0);
-            $refIndexObj->updateRefIndexTable($table, $id);
-            $refIndexObj->updateRefIndexTable($table, $swapWith);
+            // Update reference index of the live record - which could have been a workspace record in case 'new'
+            $dataHandler->updateRefIndex($table, $id, 0);
+            // The 'swapWith' record has been deleted, so we can drop any reference index the record is involved in
+            $dataHandler->registerReferenceIndexRowsForDrop($table, $swapWith, (int)$dataHandler->BE_USER->workspace);
         }
     }
 
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/copyContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/copyContent.csv
index f90b37ce8f910ea226b88507ffb0044b10a6a83c..da22994bfbec9797a9908c537b5d43f53029f6c7 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/copyContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/copyContent.csv
@@ -30,4 +30,5 @@
 ,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
 ,"737779e2835b33067cc6141faf19343e","sys_file_reference",130,"uid_local",0,0,0,"sys_file",21,,,,,,,,,,,
 ,"96faaba988970bfcd00b334d8925b5ec","sys_file_reference",132,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
-# @todo: tt_content:332 -> sys_file_reference:130 & 132 missing. Similar in localizeContent.csv and others.
+,"7f0edf5e6a8704b7825f934cf264f3d6","tt_content",332,"image",0,0,0,"sys_file_reference",130,,,,,,,,,,,
+,"01ab20f517d1e81ea1ba24e62561c039","tt_content",332,"image",1,0,0,"sys_file_reference",132,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/createContentWFileReference.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/createContentWFileReference.csv
index 78fc8517d2481721a7d6046f559b60c28158bbce..8851687e9cf9e51d55e051880ac46bcb7300d546 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/createContentWFileReference.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/createContentWFileReference.csv
@@ -27,5 +27,5 @@
 ,"fc208fc9d55a71b2faa9f4e4d4fa941d","tt_content",330,"image",1,0,0,"sys_file_reference",126,,,,,,,,,,,
 ,"48540de7710e3082f347bdd65ca340f2","tt_content",331,"image",0,0,0,"sys_file_reference",128,,,,,,,,,,,
 ,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
-# @todo: tt_content:332 -> sys_file_reference:130 missing
 ,"bb218c2fe53f7e399a6677966d9e24ab","sys_file_reference",130,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
+,"7f0edf5e6a8704b7825f934cf264f3d6","tt_content",332,"image",0,0,0,"sys_file_reference",130,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/deleteContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/deleteContent.csv
index a03f51caaca43df0993d6f8dc99c3f4cc5e2dc21..a83101da2827c5270f27d8e705d3f873e28b651c 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/deleteContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/deleteContent.csv
@@ -21,7 +21,5 @@
 ,"8e50f38980afa6f4e84530b12f9cd0b3","sys_file_reference",127,"uid_local",0,0,0,"sys_file",21,,,,,,,,,,,
 ,"a1f2ffdc6bf235cb5516c4bfdeec5552","tt_content",330,"image",0,0,0,"sys_file_reference",127,,,,,,,,,,,
 ,"fc208fc9d55a71b2faa9f4e4d4fa941d","tt_content",330,"image",1,0,0,"sys_file_reference",126,,,,,,,,,,,
-,"a8fb2431cb23053f2b64e01cac99f0aa","tt_content",331,"image",0,1,0,"sys_file_reference",128,,,,,,,,,,,
-,"8f2b8f3b69dc6adb57e7a8fd642dc759","tt_content",331,"image",1,1,0,"sys_file_reference",129,,,,,,,,,,,
 ,"0b7edf2205371519698cdfbf6e0cc6e7","sys_file_reference",128,"uid_local",0,1,0,"sys_file",21,,,,,,,,,,,
 ,"fb266d0b94cee39b87fe03b9b7875c25","sys_file_reference",129,"uid_local",0,1,0,"sys_file",1,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/localizeContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/localizeContent.csv
index 4503f4b65f9e60d2b1e990da6d7bc969355748f0..f841d59d0b4d79cb118965ecd00b476b3bd6ced1 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/localizeContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/localizeContent.csv
@@ -37,3 +37,5 @@
 ,"9290dcb69ef23b84311bf19bfde278ee","sys_file_reference",132,"sys_language_uid",0,0,0,"sys_language",1,,,,,,,,,,,
 ,"8535295b134627a7c3c55d311f8211a5","sys_file_reference",132,"l10n_parent",0,0,0,"sys_file_reference",129,,,,,,,,,,,
 ,"96faaba988970bfcd00b334d8925b5ec","sys_file_reference",132,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
+,"7f0edf5e6a8704b7825f934cf264f3d6","tt_content",332,"image",0,0,0,"sys_file_reference",130,,,,,,,,,,,
+,"01ab20f517d1e81ea1ba24e62561c039","tt_content",332,"image",1,0,0,"sys_file_reference",132,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNAddFileReference.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNAddFileReference.csv
index 53a2c39a226551725ffec82bf2b5bfba7e6327a7..8eff122708c24594759f70e0ac43c22a7b11de40 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNAddFileReference.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNAddFileReference.csv
@@ -26,5 +26,5 @@
 ,"fc208fc9d55a71b2faa9f4e4d4fa941d","tt_content",330,"image",1,0,0,"sys_file_reference",126,,,,,,,,,,,
 ,"48540de7710e3082f347bdd65ca340f2","tt_content",331,"image",0,0,0,"sys_file_reference",128,,,,,,,,,,,
 ,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
-# @todo: tt_content:331 -> sys_file_reference:132 missing
 ,"96faaba988970bfcd00b334d8925b5ec","sys_file_reference",132,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
+,"47b0249cf756eea3d76b532194ca4fe7","tt_content",331,"image",2,0,0,"sys_file_reference",132,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNDeleteAllFileReference.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNDeleteAllFileReference.csv
index d8d0378cfc99766b057feee45ea02d8f365cf34e..f690519e9e09d8775b3d972171ad270e48626ba6 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNDeleteAllFileReference.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNDeleteAllFileReference.csv
@@ -21,7 +21,5 @@
 ,"8e50f38980afa6f4e84530b12f9cd0b3","sys_file_reference",127,"uid_local",0,0,0,"sys_file",21,,,,,,,,,,,
 ,"a1f2ffdc6bf235cb5516c4bfdeec5552","tt_content",330,"image",0,0,0,"sys_file_reference",127,,,,,,,,,,,
 ,"fc208fc9d55a71b2faa9f4e4d4fa941d","tt_content",330,"image",1,0,0,"sys_file_reference",126,,,,,,,,,,,
-,"48540de7710e3082f347bdd65ca340f2","tt_content",331,"image",0,0,0,"sys_file_reference",128,,,,,,,,,,,
-,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
 ,"0b7edf2205371519698cdfbf6e0cc6e7","sys_file_reference",128,"uid_local",0,1,0,"sys_file",21,,,,,,,,,,,
 ,"fb266d0b94cee39b87fe03b9b7875c25","sys_file_reference",129,"uid_local",0,1,0,"sys_file",1,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNDeleteFileReference.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNDeleteFileReference.csv
index 2677c43ffaa7e1d89b36030fad00b9301ca7ca70..4364ee242fb79d4e57e5b2f10d540e224653c777 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNDeleteFileReference.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/DataSet/modifyContentNDeleteFileReference.csv
@@ -22,6 +22,5 @@
 ,"c08c2538c324b0a98b0957bc4bdf36ae","sys_file_reference",129,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
 ,"a1f2ffdc6bf235cb5516c4bfdeec5552","tt_content",330,"image",0,0,0,"sys_file_reference",127,,,,,,,,,,,
 ,"fc208fc9d55a71b2faa9f4e4d4fa941d","tt_content",330,"image",1,0,0,"sys_file_reference",126,,,,,,,,,,,
-,"48540de7710e3082f347bdd65ca340f2","tt_content",331,"image",0,0,0,"sys_file_reference",128,,,,,,,,,,,
-,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
 ,"0b7edf2205371519698cdfbf6e0cc6e7","sys_file_reference",128,"uid_local",0,1,0,"sys_file",21,,,,,,,,,,,
+,"997297edc2047a0fd48ffc237299a902","tt_content",331,"image",0,0,0,"sys_file_reference",129,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/copyContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/copyContent.csv
index d71697f64f843addabf88b262d461b08ff61ec09..da22994bfbec9797a9908c537b5d43f53029f6c7 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/copyContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/copyContent.csv
@@ -30,3 +30,5 @@
 ,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
 ,"737779e2835b33067cc6141faf19343e","sys_file_reference",130,"uid_local",0,0,0,"sys_file",21,,,,,,,,,,,
 ,"96faaba988970bfcd00b334d8925b5ec","sys_file_reference",132,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
+,"7f0edf5e6a8704b7825f934cf264f3d6","tt_content",332,"image",0,0,0,"sys_file_reference",130,,,,,,,,,,,
+,"01ab20f517d1e81ea1ba24e62561c039","tt_content",332,"image",1,0,0,"sys_file_reference",132,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/createContentWFileReference.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/createContentWFileReference.csv
index f5f465cb93e076109b2bdc25b9b2bb921d0cd5a4..8851687e9cf9e51d55e051880ac46bcb7300d546 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/createContentWFileReference.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/createContentWFileReference.csv
@@ -28,3 +28,4 @@
 ,"48540de7710e3082f347bdd65ca340f2","tt_content",331,"image",0,0,0,"sys_file_reference",128,,,,,,,,,,,
 ,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
 ,"bb218c2fe53f7e399a6677966d9e24ab","sys_file_reference",130,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
+,"7f0edf5e6a8704b7825f934cf264f3d6","tt_content",332,"image",0,0,0,"sys_file_reference",130,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/deleteContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/deleteContent.csv
index ad2289a2a83724198a45bb95993b73004db2cf91..a83101da2827c5270f27d8e705d3f873e28b651c 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/deleteContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/deleteContent.csv
@@ -23,5 +23,3 @@
 ,"fc208fc9d55a71b2faa9f4e4d4fa941d","tt_content",330,"image",1,0,0,"sys_file_reference",126,,,,,,,,,,,
 ,"0b7edf2205371519698cdfbf6e0cc6e7","sys_file_reference",128,"uid_local",0,1,0,"sys_file",21,,,,,,,,,,,
 ,"fb266d0b94cee39b87fe03b9b7875c25","sys_file_reference",129,"uid_local",0,1,0,"sys_file",1,,,,,,,,,,,
-,"a8fb2431cb23053f2b64e01cac99f0aa","tt_content",331,"image",0,1,0,"sys_file_reference",128,,,,,,,,,,,
-,"8f2b8f3b69dc6adb57e7a8fd642dc759","tt_content",331,"image",1,1,0,"sys_file_reference",129,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/localizeContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/localizeContent.csv
index cb47a10269f7967a19c0f84c24cdf664ee8ff3e0..bc1dcb61ed3af59104b36b0e7b726007e5139001 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/localizeContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/localizeContent.csv
@@ -37,3 +37,5 @@
 ,"96faaba988970bfcd00b334d8925b5ec","sys_file_reference",132,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
 ,"7495604375ab4caae25ea3da5e76f6c3","pages",91,"l10n_parent",0,0,0,"pages",89,,,,,,,,,,,
 ,"885fa8b0049daa6a9f6989e7bc55ae11","pages",91,"sys_language_uid",0,0,0,"sys_language",1,,,,,,,,,,,
+,"7f0edf5e6a8704b7825f934cf264f3d6","tt_content",332,"image",0,0,0,"sys_file_reference",130,,,,,,,,,,,
+,"01ab20f517d1e81ea1ba24e62561c039","tt_content",332,"image",1,0,0,"sys_file_reference",132,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNAddFileReference.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNAddFileReference.csv
index dee5fb906e3bf24cc8d7ab8eb2b2b341190dcbcd..8eff122708c24594759f70e0ac43c22a7b11de40 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNAddFileReference.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNAddFileReference.csv
@@ -27,3 +27,4 @@
 ,"48540de7710e3082f347bdd65ca340f2","tt_content",331,"image",0,0,0,"sys_file_reference",128,,,,,,,,,,,
 ,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
 ,"96faaba988970bfcd00b334d8925b5ec","sys_file_reference",132,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
+,"47b0249cf756eea3d76b532194ca4fe7","tt_content",331,"image",2,0,0,"sys_file_reference",132,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNDeleteAllFileReference.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNDeleteAllFileReference.csv
index d8d0378cfc99766b057feee45ea02d8f365cf34e..f690519e9e09d8775b3d972171ad270e48626ba6 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNDeleteAllFileReference.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNDeleteAllFileReference.csv
@@ -21,7 +21,5 @@
 ,"8e50f38980afa6f4e84530b12f9cd0b3","sys_file_reference",127,"uid_local",0,0,0,"sys_file",21,,,,,,,,,,,
 ,"a1f2ffdc6bf235cb5516c4bfdeec5552","tt_content",330,"image",0,0,0,"sys_file_reference",127,,,,,,,,,,,
 ,"fc208fc9d55a71b2faa9f4e4d4fa941d","tt_content",330,"image",1,0,0,"sys_file_reference",126,,,,,,,,,,,
-,"48540de7710e3082f347bdd65ca340f2","tt_content",331,"image",0,0,0,"sys_file_reference",128,,,,,,,,,,,
-,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
 ,"0b7edf2205371519698cdfbf6e0cc6e7","sys_file_reference",128,"uid_local",0,1,0,"sys_file",21,,,,,,,,,,,
 ,"fb266d0b94cee39b87fe03b9b7875c25","sys_file_reference",129,"uid_local",0,1,0,"sys_file",1,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNDeleteFileReference.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNDeleteFileReference.csv
index 2677c43ffaa7e1d89b36030fad00b9301ca7ca70..4364ee242fb79d4e57e5b2f10d540e224653c777 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNDeleteFileReference.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/DataSet/modifyContentNDeleteFileReference.csv
@@ -22,6 +22,5 @@
 ,"c08c2538c324b0a98b0957bc4bdf36ae","sys_file_reference",129,"uid_local",0,0,0,"sys_file",1,,,,,,,,,,,
 ,"a1f2ffdc6bf235cb5516c4bfdeec5552","tt_content",330,"image",0,0,0,"sys_file_reference",127,,,,,,,,,,,
 ,"fc208fc9d55a71b2faa9f4e4d4fa941d","tt_content",330,"image",1,0,0,"sys_file_reference",126,,,,,,,,,,,
-,"48540de7710e3082f347bdd65ca340f2","tt_content",331,"image",0,0,0,"sys_file_reference",128,,,,,,,,,,,
-,"ceaebd2148901a6d7b0a52c546aa5218","tt_content",331,"image",1,0,0,"sys_file_reference",129,,,,,,,,,,,
 ,"0b7edf2205371519698cdfbf6e0cc6e7","sys_file_reference",128,"uid_local",0,1,0,"sys_file",21,,,,,,,,,,,
+,"997297edc2047a0fd48ffc237299a902","tt_content",331,"image",0,0,0,"sys_file_reference",129,,,,,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyPage.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyPage.csv
index bfbe41c508b0f7bd9b4a6d90eade9018ba9673fe..f94abdd41a9896699a86f02ea477fd7afb0d913b 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyPage.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyPage.csv
@@ -73,8 +73,11 @@
 ,"a81c22270e0460f01945c76ff9207931","tx_irretutorial_1nff_hotel",12,"offers",0,0,0,"tx_irretutorial_1nff_offer",15,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
 ,"0b1f257e028422a03a7754f9af22e894","tx_irretutorial_1nff_offer",11,"prices",0,0,0,"tx_irretutorial_1nff_price",16,,,,,,,
-,"8402a4706fc72aaba7ae0dd86b8f7f53","tx_irretutorial_1nff_offer",11,"prices",1,0,0,"tx_irretutorial_1nff_price",18,,,,,,,
-,"5c4375c00fcd2363bc7cf7d1a093f27e","tx_irretutorial_1nff_offer",11,"prices",2,0,0,"tx_irretutorial_1nff_price",20,,,,,,,
 ,"cfc667c438288caee77caad75380591b","tx_irretutorial_1nff_offer",13,"prices",0,0,0,"tx_irretutorial_1nff_price",22,,,,,,,
 ,"18225624114777c05225ef05b3ed32f9","tx_irretutorial_1nff_offer",13,"prices",1,0,0,"tx_irretutorial_1nff_price",24,,,,,,,
 ,"1b5ca5832c1661ba905a2bf64d7758b1","tx_irretutorial_1nff_offer",15,"prices",0,0,0,"tx_irretutorial_1nff_price",26,,,,,,,
+,"e874383078676dc2cace3dec5044ac9a","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",8,,,,,,,
+,"903f12b77f445c154082309776cfa5c9","tt_content",301,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",10,,,,,,,
+,"b5b95da11c9bc72614338afdce9cfb3e","tt_content",301,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",12,,,,,,,
+,"9a591cdcec9912135cfba1b0d432ee1f","tx_irretutorial_1nff_offer",11,"prices",1,0,0,"tx_irretutorial_1nff_price",20,,,,,,,
+,"0c31bf16207245ea0e0a8ad9b0f65273","tx_irretutorial_1nff_offer",11,"prices",2,0,0,"tx_irretutorial_1nff_price",18,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyPageWHotelBeforeParentContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyPageWHotelBeforeParentContent.csv
index bac2a6acea255e6863cdb88456dd85504fc47dca..f777cd577c53d2196f6aec8f4bb8156de675bb26 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyPageWHotelBeforeParentContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyPageWHotelBeforeParentContent.csv
@@ -73,8 +73,11 @@
 ,"00519bbb0b49d6659f15572492d97132","tx_irretutorial_1nff_hotel",8,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"0b1f257e028422a03a7754f9af22e894","tx_irretutorial_1nff_offer",11,"prices",0,0,0,"tx_irretutorial_1nff_price",16,,,,,,,
 ,"2b9d7496969d1d01455315722ba8daac","tx_irretutorial_1nff_offer",13,"prices",0,0,0,"tx_irretutorial_1nff_price",18,,,,,,,
-,"57361914181e6bdf383ca411b02ff82b","tx_irretutorial_1nff_offer",13,"prices",1,0,0,"tx_irretutorial_1nff_price",20,,,,,,,
-,"cf276e94025d0621a37046de41d6c7ed","tx_irretutorial_1nff_offer",13,"prices",2,0,0,"tx_irretutorial_1nff_price",22,,,,,,,
 ,"8b1aacbf2a38ed68e1aaef67b0c70bef","tx_irretutorial_1nff_offer",15,"prices",0,0,0,"tx_irretutorial_1nff_price",24,,,,,,,
 ,"7864a13a901e3439d9bd65d4b0d0c812","tx_irretutorial_1nff_offer",15,"prices",1,0,0,"tx_irretutorial_1nff_price",26,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
+,"8f1d0b2bd1c3a7464c926554655beec5","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",10,,,,,,,
+,"2b8ac1823326a4e3202af99c46142e7b","tt_content",301,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",12,,,,,,,
+,"499aefae88e56643a6611e169ec2cd98","tt_content",301,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",8,,,,,,,
+,"6fb1c500f846553b3ff5b43d3bf6bd72","tx_irretutorial_1nff_offer",13,"prices",1,0,0,"tx_irretutorial_1nff_price",22,,,,,,,
+,"45ead33ad3a72cd30fdcf48119724108","tx_irretutorial_1nff_offer",13,"prices",2,0,0,"tx_irretutorial_1nff_price",20,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyParentContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyParentContent.csv
index 789ed31ae2f0360b6547578e417c327ebc921917..b1b7f2fba4f902b369504ef277f9a5a847854c67 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyParentContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyParentContent.csv
@@ -46,6 +46,6 @@
 ,"d05558a22d87f923406b45cc3f369943","sys_workspace",1,"custom_stages",0,0,0,"sys_workspace_stage",1,,,,,,,
 ,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
-# @todo: tt_content:299 -> hotel:6 missing
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyParentContentToDifferentPage.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyParentContentToDifferentPage.csv
index 1a71de9086edbf03bfb5626ce2f556480d483dc6..6ff95101e5a222a903d4470f7fb62dff39588db5 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyParentContentToDifferentPage.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/copyParentContentToDifferentPage.csv
@@ -54,3 +54,4 @@
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createNCopyParentContentNHotelNOfferChildren.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createNCopyParentContentNHotelNOfferChildren.csv
index 9fc64e944b163c91e6ea3dc59a072bd7804a6497..70f4dd60aac7ac506581490a641363a872a4b85d 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createNCopyParentContentNHotelNOfferChildren.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createNCopyParentContentNHotelNOfferChildren.csv
@@ -50,3 +50,5 @@
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"e4c917a9b9d8a1ade11fb247f82e7b8c","tx_irretutorial_1nff_hotel",8,"offers",0,0,0,"tx_irretutorial_1nff_offer",11,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
+,"bfec0ab61d725142ab9bcedd7c25a3c8","tt_content",301,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",8,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createNLocalizeParentContentNHotelNOfferChildren.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createNLocalizeParentContentNHotelNOfferChildren.csv
index a75fcb8425468db18ee1316b59705809d1a79e20..30c94959234170242d609eb14042d6c5e93890a1 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createNLocalizeParentContentNHotelNOfferChildren.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createNLocalizeParentContentNHotelNOfferChildren.csv
@@ -57,3 +57,5 @@
 ,"a94b6c0759ee650e37fff9bd515a2940","tx_irretutorial_1nff_offer",11,"sys_language_uid",0,0,0,"sys_language",1,,,,,,,
 ,"a9ee8ba875ba35f80ec82604488f21cd","tx_irretutorial_1nff_offer",11,"l18n_parent",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"e4c917a9b9d8a1ade11fb247f82e7b8c","tx_irretutorial_1nff_hotel",8,"offers",0,0,0,"tx_irretutorial_1nff_offer",11,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
+,"bfec0ab61d725142ab9bcedd7c25a3c8","tt_content",301,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",8,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createParentContentNHotelNOfferChildren.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createParentContentNHotelNOfferChildren.csv
index 049c2d209080b67a9b0193e86ec0f68117cc7bdd..a651b2a1f020e167edc2e4849ac11029effb8da2 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createParentContentNHotelNOfferChildren.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/createParentContentNHotelNOfferChildren.csv
@@ -46,3 +46,4 @@
 ,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/deleteParentContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/deleteParentContent.csv
index 68c518643add0b3d36b08a255dcece347a56dc3e..33e5b096a52f92519401eb8d0cc195da1389a5fc 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/deleteParentContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/deleteParentContent.csv
@@ -39,6 +39,3 @@
 ,"d05558a22d87f923406b45cc3f369943","sys_workspace",1,"custom_stages",0,0,0,"sys_workspace_stage",1,,,,,,,
 ,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
-,"21bb2ff48321cd00af7ee156c889f2a9","tt_content",298,"tx_irretutorial_1nff_hotels",0,1,0,"tx_irretutorial_1nff_hotel",5,,,,,,,
-,"4800af08cdd411cbe57d5648abfc58b2","tx_irretutorial_1nff_hotel",5,"offers",0,1,0,"tx_irretutorial_1nff_offer",8,,,,,,,
-,"38a675380dc4214c554cfd01c6609078","tx_irretutorial_1nff_offer",8,"prices",0,1,0,"tx_irretutorial_1nff_price",13,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/localizeParentContentWAllChildren.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/localizeParentContentWAllChildren.csv
index df6a370cfb125831e106745213c2ba097733a347..18204c48f1da2bb39e11de40754dc5e4dd972f5d 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/localizeParentContentWAllChildren.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/localizeParentContentWAllChildren.csv
@@ -57,3 +57,4 @@
 ,"cd7b32a4f3156c3004f525b832707a67","tx_irretutorial_1nff_price",14,"l18n_parent",0,0,0,"tx_irretutorial_1nff_price",13,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNAddHotelChild.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNAddHotelChild.csv
index 30ede4a826c021b8f6c659c3ed2771c991784ef2..4f492382f8d1a972f5a1bb156173871186bd9d74 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNAddHotelChild.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNAddHotelChild.csv
@@ -43,3 +43,4 @@
 ,"5f87b200c780cdaad0604f50da06ff64","tx_irretutorial_1nff_hotel",5,"offers",0,0,0,"tx_irretutorial_1nff_offer",8,,,,,,,
 ,"a94608071329f0b81c051da65b9c3e53","tx_irretutorial_1nff_offer",8,"prices",0,0,0,"tx_irretutorial_1nff_price",13,,,,,,,
 ,"43578810ac60f4e31c4c1eb52e37c4cb","tt_content",298,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",5,,,,,,,
+,"039a3027510a31d4182708b4c446d9d9","tt_content",298,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",7,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNChangeHotelChildrenSorting.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNChangeHotelChildrenSorting.csv
index bb0c3ba5b56901d6b246d09e92e82a7647e64617..f3c960d0bdcfcb931c7e6b48a31530ebe5185c5b 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNChangeHotelChildrenSorting.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNChangeHotelChildrenSorting.csv
@@ -40,5 +40,5 @@
 ,"16a1e406f4a7130e58fb366e932e7508","tx_irretutorial_1nff_offer",5,"prices",2,0,0,"tx_irretutorial_1nff_price",9,,,,,,,
 ,"141f3d182dee9a325a853a0ff79602d9","tx_irretutorial_1nff_offer",6,"prices",0,0,0,"tx_irretutorial_1nff_price",10,,,,,,,
 ,"c6b8bf49d7d73a58a068814db5472e60","tx_irretutorial_1nff_offer",6,"prices",1,0,0,"tx_irretutorial_1nff_price",11,,,,,,,
-,"5925fc8c83fd2759d4dbb7d2e87b9e28","tt_content",297,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",4,,,,,,,
-,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
+,"98e8b23fc53f85a72770efcab764e6ce","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",4,,,,,,,
+,"df4a64b052f8f7c25226afe0ea6c9e6d","tt_content",297,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNDeleteHotelChild.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNDeleteHotelChild.csv
index b8ad3599235a73cdf18645be20d10da72d7195b1..c54099284ed8ac615be5844ac58580793389cfca 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNDeleteHotelChild.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/modifyParentNDeleteHotelChild.csv
@@ -40,7 +40,4 @@
 ,"c6b8bf49d7d73a58a068814db5472e60","tx_irretutorial_1nff_offer",6,"prices",1,0,0,"tx_irretutorial_1nff_price",11,,,,,,,
 ,"3a59a2c65f05196774ee38fad12b11a8","tx_irretutorial_1nff_hotel",3,"offers",1,0,0,"tx_irretutorial_1nff_offer",6,,,,,,,
 ,"991035e9a032ce5a95b3dbc7f2f31471","tx_irretutorial_1nff_hotel",3,"offers",0,0,0,"tx_irretutorial_1nff_offer",5,,,,,,,
-,"f7230ed016ca1a48f8193689dfd4bcb4","tx_irretutorial_1nff_hotel",4,"offers",0,1,0,"tx_irretutorial_1nff_offer",7,,,,,,,
-,"8867b6607a49f11bbf1ee1b3468d74e0","tx_irretutorial_1nff_offer",7,"prices",0,1,0,"tx_irretutorial_1nff_price",12,,,,,,,
-,"5925fc8c83fd2759d4dbb7d2e87b9e28","tt_content",297,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",4,,,,,,,
 ,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/moveParentContentToDifferentPageNChangeSorting.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/moveParentContentToDifferentPageNChangeSorting.csv
index a027247a8333586aff273d33c53caf03b36284f9..843787c3416970a73375f70f05522e18382d5e98 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/moveParentContentToDifferentPageNChangeSorting.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/DataSet/moveParentContentToDifferentPageNChangeSorting.csv
@@ -32,13 +32,13 @@
 ,"5925fc8c83fd2759d4dbb7d2e87b9e28","tt_content",297,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",4,,,,,,,
 ,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
 ,"5f87b200c780cdaad0604f50da06ff64","tx_irretutorial_1nff_hotel",5,"offers",0,0,0,"tx_irretutorial_1nff_offer",8,,,,,,,
-,"88f61684753ab6a32ff200164ae93198","tx_irretutorial_1nff_hotel",3,"offers",0,0,0,"tx_irretutorial_1nff_offer",6,,,,,,,
-,"6356312e1cdbbda5b2c9939d9860ed8f","tx_irretutorial_1nff_hotel",3,"offers",1,0,0,"tx_irretutorial_1nff_offer",5,,,,,,,
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
 ,"a94608071329f0b81c051da65b9c3e53","tx_irretutorial_1nff_offer",8,"prices",0,0,0,"tx_irretutorial_1nff_price",13,,,,,,,
-,"182d3359e7c8400e089bcd965bc75dc0","tx_irretutorial_1nff_offer",5,"prices",0,0,0,"tx_irretutorial_1nff_price",9,,,,,,,
 ,"6898a967adae0bddf17e30a04cf9c0ad","tx_irretutorial_1nff_offer",5,"prices",1,0,0,"tx_irretutorial_1nff_price",8,,,,,,,
-,"35ec0542fbbf3828231e76da6246a912","tx_irretutorial_1nff_offer",5,"prices",2,0,0,"tx_irretutorial_1nff_price",7,,,,,,,
-,"9e9d4b69b80392bfff30f3e15b2e6e66","tx_irretutorial_1nff_offer",6,"prices",0,0,0,"tx_irretutorial_1nff_price",11,,,,,,,
-,"e0de217e20de016e20c4cfa7531b1338","tx_irretutorial_1nff_offer",6,"prices",1,0,0,"tx_irretutorial_1nff_price",10,,,,,,,
 ,"bc4f857ec8124fdd793a76e7b45930af","tx_irretutorial_1nff_offer",7,"prices",0,0,0,"tx_irretutorial_1nff_price",12,,,,,,,
+,"991035e9a032ce5a95b3dbc7f2f31471","tx_irretutorial_1nff_hotel",3,"offers",0,0,0,"tx_irretutorial_1nff_offer",5,,,,,,,
+,"3a59a2c65f05196774ee38fad12b11a8","tx_irretutorial_1nff_hotel",3,"offers",1,0,0,"tx_irretutorial_1nff_offer",6,,,,,,,
+,"a5b1bb284498b3b68a87adda927e894f","tx_irretutorial_1nff_offer",5,"prices",0,0,0,"tx_irretutorial_1nff_price",7,,,,,,,
+,"16a1e406f4a7130e58fb366e932e7508","tx_irretutorial_1nff_offer",5,"prices",2,0,0,"tx_irretutorial_1nff_price",9,,,,,,,
+,"141f3d182dee9a325a853a0ff79602d9","tx_irretutorial_1nff_offer",6,"prices",0,0,0,"tx_irretutorial_1nff_price",10,,,,,,,
+,"c6b8bf49d7d73a58a068814db5472e60","tx_irretutorial_1nff_offer",6,"prices",1,0,0,"tx_irretutorial_1nff_price",11,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyPage.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyPage.csv
index 666efddc8ec33d44ea5a65a3c5fe67fbc7de08e3..980912ee9379949c8298c006c38c81731e4ddf8d 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyPage.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyPage.csv
@@ -72,9 +72,12 @@
 ,"a81c22270e0460f01945c76ff9207931","tx_irretutorial_1nff_hotel",12,"offers",0,0,0,"tx_irretutorial_1nff_offer",15,,,,,,,
 ,"00519bbb0b49d6659f15572492d97132","tx_irretutorial_1nff_hotel",8,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"0b1f257e028422a03a7754f9af22e894","tx_irretutorial_1nff_offer",11,"prices",0,0,0,"tx_irretutorial_1nff_price",16,,,,,,,
-,"8402a4706fc72aaba7ae0dd86b8f7f53","tx_irretutorial_1nff_offer",11,"prices",1,0,0,"tx_irretutorial_1nff_price",18,,,,,,,
-,"5c4375c00fcd2363bc7cf7d1a093f27e","tx_irretutorial_1nff_offer",11,"prices",2,0,0,"tx_irretutorial_1nff_price",20,,,,,,,
 ,"cfc667c438288caee77caad75380591b","tx_irretutorial_1nff_offer",13,"prices",0,0,0,"tx_irretutorial_1nff_price",22,,,,,,,
 ,"18225624114777c05225ef05b3ed32f9","tx_irretutorial_1nff_offer",13,"prices",1,0,0,"tx_irretutorial_1nff_price",24,,,,,,,
 ,"1b5ca5832c1661ba905a2bf64d7758b1","tx_irretutorial_1nff_offer",15,"prices",0,0,0,"tx_irretutorial_1nff_price",26,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
+,"903f12b77f445c154082309776cfa5c9","tt_content",301,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",10,,,,,,,
+,"b5b95da11c9bc72614338afdce9cfb3e","tt_content",301,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",12,,,,,,,
+,"e874383078676dc2cace3dec5044ac9a","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",8,,,,,,,
+,"9a591cdcec9912135cfba1b0d432ee1f","tx_irretutorial_1nff_offer",11,"prices",1,0,0,"tx_irretutorial_1nff_price",20,,,,,,,
+,"0c31bf16207245ea0e0a8ad9b0f65273","tx_irretutorial_1nff_offer",11,"prices",2,0,0,"tx_irretutorial_1nff_price",18,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyPageWHotelBeforeParentContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyPageWHotelBeforeParentContent.csv
index bac2a6acea255e6863cdb88456dd85504fc47dca..f777cd577c53d2196f6aec8f4bb8156de675bb26 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyPageWHotelBeforeParentContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyPageWHotelBeforeParentContent.csv
@@ -73,8 +73,11 @@
 ,"00519bbb0b49d6659f15572492d97132","tx_irretutorial_1nff_hotel",8,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"0b1f257e028422a03a7754f9af22e894","tx_irretutorial_1nff_offer",11,"prices",0,0,0,"tx_irretutorial_1nff_price",16,,,,,,,
 ,"2b9d7496969d1d01455315722ba8daac","tx_irretutorial_1nff_offer",13,"prices",0,0,0,"tx_irretutorial_1nff_price",18,,,,,,,
-,"57361914181e6bdf383ca411b02ff82b","tx_irretutorial_1nff_offer",13,"prices",1,0,0,"tx_irretutorial_1nff_price",20,,,,,,,
-,"cf276e94025d0621a37046de41d6c7ed","tx_irretutorial_1nff_offer",13,"prices",2,0,0,"tx_irretutorial_1nff_price",22,,,,,,,
 ,"8b1aacbf2a38ed68e1aaef67b0c70bef","tx_irretutorial_1nff_offer",15,"prices",0,0,0,"tx_irretutorial_1nff_price",24,,,,,,,
 ,"7864a13a901e3439d9bd65d4b0d0c812","tx_irretutorial_1nff_offer",15,"prices",1,0,0,"tx_irretutorial_1nff_price",26,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
+,"8f1d0b2bd1c3a7464c926554655beec5","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",10,,,,,,,
+,"2b8ac1823326a4e3202af99c46142e7b","tt_content",301,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",12,,,,,,,
+,"499aefae88e56643a6611e169ec2cd98","tt_content",301,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",8,,,,,,,
+,"6fb1c500f846553b3ff5b43d3bf6bd72","tx_irretutorial_1nff_offer",13,"prices",1,0,0,"tx_irretutorial_1nff_price",22,,,,,,,
+,"45ead33ad3a72cd30fdcf48119724108","tx_irretutorial_1nff_offer",13,"prices",2,0,0,"tx_irretutorial_1nff_price",20,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyParentContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyParentContent.csv
index adb6a52d0ce507bab81629c2f2b9a44b772c5203..7858bd130c252604a9a9ad808f1d1fd73c4ad2ef 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyParentContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyParentContent.csv
@@ -48,3 +48,4 @@
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyParentContentToDifferentPage.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyParentContentToDifferentPage.csv
index 1a71de9086edbf03bfb5626ce2f556480d483dc6..6ff95101e5a222a903d4470f7fb62dff39588db5 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyParentContentToDifferentPage.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/copyParentContentToDifferentPage.csv
@@ -54,3 +54,4 @@
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createNCopyParentContentNHotelNOfferChildren.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createNCopyParentContentNHotelNOfferChildren.csv
index c4192b4bcd3181e4b45e5c45b76f7c0b56394ec8..35ce4f883f927f42c2706379958688514888165f 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createNCopyParentContentNHotelNOfferChildren.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createNCopyParentContentNHotelNOfferChildren.csv
@@ -50,3 +50,5 @@
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
 ,"e4c917a9b9d8a1ade11fb247f82e7b8c","tx_irretutorial_1nff_hotel",8,"offers",0,0,0,"tx_irretutorial_1nff_offer",11,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
+,"bfec0ab61d725142ab9bcedd7c25a3c8","tt_content",301,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",8,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createNLocalizeParentContentNHotelNOfferChildren.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createNLocalizeParentContentNHotelNOfferChildren.csv
index 1db92a0c4f2b61169a73b9f4ec00092562aaa871..b172b7cdd6a8941634123b8764983e366c55ed55 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createNLocalizeParentContentNHotelNOfferChildren.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createNLocalizeParentContentNHotelNOfferChildren.csv
@@ -57,3 +57,5 @@
 ,"885fa8b0049daa6a9f6989e7bc55ae11","pages",91,"sys_language_uid",0,0,0,"sys_language",1,,,,,,,
 ,"e4c917a9b9d8a1ade11fb247f82e7b8c","tx_irretutorial_1nff_hotel",8,"offers",0,0,0,"tx_irretutorial_1nff_offer",11,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
+,"bfec0ab61d725142ab9bcedd7c25a3c8","tt_content",301,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",8,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createParentContentNHotelNOfferChildren.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createParentContentNHotelNOfferChildren.csv
index 049c2d209080b67a9b0193e86ec0f68117cc7bdd..a651b2a1f020e167edc2e4849ac11029effb8da2 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createParentContentNHotelNOfferChildren.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/createParentContentNHotelNOfferChildren.csv
@@ -46,3 +46,4 @@
 ,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/deleteParentContent.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/deleteParentContent.csv
index 68c518643add0b3d36b08a255dcece347a56dc3e..33e5b096a52f92519401eb8d0cc195da1389a5fc 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/deleteParentContent.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/deleteParentContent.csv
@@ -39,6 +39,3 @@
 ,"d05558a22d87f923406b45cc3f369943","sys_workspace",1,"custom_stages",0,0,0,"sys_workspace_stage",1,,,,,,,
 ,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
-,"21bb2ff48321cd00af7ee156c889f2a9","tt_content",298,"tx_irretutorial_1nff_hotels",0,1,0,"tx_irretutorial_1nff_hotel",5,,,,,,,
-,"4800af08cdd411cbe57d5648abfc58b2","tx_irretutorial_1nff_hotel",5,"offers",0,1,0,"tx_irretutorial_1nff_offer",8,,,,,,,
-,"38a675380dc4214c554cfd01c6609078","tx_irretutorial_1nff_offer",8,"prices",0,1,0,"tx_irretutorial_1nff_price",13,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/localizeParentContentWAllChildren.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/localizeParentContentWAllChildren.csv
index e4e718028e550a42a686759215859c9dd776fd40..bfa3d39aa20ef8f11fea9eac35abee3df2096969 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/localizeParentContentWAllChildren.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/localizeParentContentWAllChildren.csv
@@ -57,3 +57,4 @@
 ,"885fa8b0049daa6a9f6989e7bc55ae11","pages",91,"sys_language_uid",0,0,0,"sys_language",1,,,,,,,
 ,"a0cfe1ce39be83687c92da2f4bd64df7","tx_irretutorial_1nff_hotel",6,"offers",0,0,0,"tx_irretutorial_1nff_offer",9,,,,,,,
 ,"79cc995658ae92af7fa70085b8758270","tx_irretutorial_1nff_offer",9,"prices",0,0,0,"tx_irretutorial_1nff_price",14,,,,,,,
+,"8d75f94b9d17c650dc9bfa6a3f84e254","tt_content",299,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",6,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNAddHotelChild.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNAddHotelChild.csv
index 30ede4a826c021b8f6c659c3ed2771c991784ef2..4f492382f8d1a972f5a1bb156173871186bd9d74 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNAddHotelChild.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNAddHotelChild.csv
@@ -43,3 +43,4 @@
 ,"5f87b200c780cdaad0604f50da06ff64","tx_irretutorial_1nff_hotel",5,"offers",0,0,0,"tx_irretutorial_1nff_offer",8,,,,,,,
 ,"a94608071329f0b81c051da65b9c3e53","tx_irretutorial_1nff_offer",8,"prices",0,0,0,"tx_irretutorial_1nff_price",13,,,,,,,
 ,"43578810ac60f4e31c4c1eb52e37c4cb","tt_content",298,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",5,,,,,,,
+,"039a3027510a31d4182708b4c446d9d9","tt_content",298,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",7,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNChangeHotelChildrenSorting.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNChangeHotelChildrenSorting.csv
index bb0c3ba5b56901d6b246d09e92e82a7647e64617..f3c960d0bdcfcb931c7e6b48a31530ebe5185c5b 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNChangeHotelChildrenSorting.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNChangeHotelChildrenSorting.csv
@@ -40,5 +40,5 @@
 ,"16a1e406f4a7130e58fb366e932e7508","tx_irretutorial_1nff_offer",5,"prices",2,0,0,"tx_irretutorial_1nff_price",9,,,,,,,
 ,"141f3d182dee9a325a853a0ff79602d9","tx_irretutorial_1nff_offer",6,"prices",0,0,0,"tx_irretutorial_1nff_price",10,,,,,,,
 ,"c6b8bf49d7d73a58a068814db5472e60","tx_irretutorial_1nff_offer",6,"prices",1,0,0,"tx_irretutorial_1nff_price",11,,,,,,,
-,"5925fc8c83fd2759d4dbb7d2e87b9e28","tt_content",297,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",4,,,,,,,
-,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
+,"98e8b23fc53f85a72770efcab764e6ce","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",4,,,,,,,
+,"df4a64b052f8f7c25226afe0ea6c9e6d","tt_content",297,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNDeleteHotelChild.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNDeleteHotelChild.csv
index 8a5e871f880eba5193dc8913cd453fcbc04ab22b..6895d3b28014fd7da6e39a4b1bfee95da353b8cd 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNDeleteHotelChild.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/modifyParentNDeleteHotelChild.csv
@@ -39,5 +39,3 @@
 ,"c6b8bf49d7d73a58a068814db5472e60","tx_irretutorial_1nff_offer",6,"prices",1,0,0,"tx_irretutorial_1nff_price",11,,,,,,,
 ,"3a59a2c65f05196774ee38fad12b11a8","tx_irretutorial_1nff_hotel",3,"offers",1,0,0,"tx_irretutorial_1nff_offer",6,,,,,,,
 ,"991035e9a032ce5a95b3dbc7f2f31471","tx_irretutorial_1nff_hotel",3,"offers",0,0,0,"tx_irretutorial_1nff_offer",5,,,,,,,
-,"f7230ed016ca1a48f8193689dfd4bcb4","tx_irretutorial_1nff_hotel",4,"offers",0,1,0,"tx_irretutorial_1nff_offer",7,,,,,,,
-,"8867b6607a49f11bbf1ee1b3468d74e0","tx_irretutorial_1nff_offer",7,"prices",0,1,0,"tx_irretutorial_1nff_price",12,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/moveParentContentToDifferentPageNChangeSorting.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/moveParentContentToDifferentPageNChangeSorting.csv
index f8bad08dc2986aa7be87968aa7ece2b21df2acd4..fa4a5fdb3990eea9ef5f91033cd016048d55d638 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/moveParentContentToDifferentPageNChangeSorting.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/DataSet/moveParentContentToDifferentPageNChangeSorting.csv
@@ -28,17 +28,17 @@
 ,"1bbbf7d18b85fd6e70d76947a563e492","sys_workspace_stage",1,"responsible_persons",0,0,0,"be_users",3,,,,,,,
 ,"2dfd3b8e87b9b45f18e0b3c3a7fa2f72","pages",89,"tx_irretutorial_hotels",0,0,0,"tx_irretutorial_1nff_hotel",2,,,,,,,
 ,"d05558a22d87f923406b45cc3f369943","sys_workspace",1,"custom_stages",0,0,0,"sys_workspace_stage",1,,,,,,,
-,"88f61684753ab6a32ff200164ae93198","tx_irretutorial_1nff_hotel",3,"offers",0,0,0,"tx_irretutorial_1nff_offer",6,,,,,,,
-,"6356312e1cdbbda5b2c9939d9860ed8f","tx_irretutorial_1nff_hotel",3,"offers",1,0,0,"tx_irretutorial_1nff_offer",5,,,,,,,
 ,"fcc697bfb91755f75e07f6ce1784b18b","tx_irretutorial_1nff_hotel",4,"offers",0,0,0,"tx_irretutorial_1nff_offer",7,,,,,,,
 ,"5f87b200c780cdaad0604f50da06ff64","tx_irretutorial_1nff_hotel",5,"offers",0,0,0,"tx_irretutorial_1nff_offer",8,,,,,,,
-,"182d3359e7c8400e089bcd965bc75dc0","tx_irretutorial_1nff_offer",5,"prices",0,0,0,"tx_irretutorial_1nff_price",9,,,,,,,
-,"6898a967adae0bddf17e30a04cf9c0ad","tx_irretutorial_1nff_offer",5,"prices",1,0,0,"tx_irretutorial_1nff_price",8,,,,,,,
-,"35ec0542fbbf3828231e76da6246a912","tx_irretutorial_1nff_offer",5,"prices",2,0,0,"tx_irretutorial_1nff_price",7,,,,,,,
-,"9e9d4b69b80392bfff30f3e15b2e6e66","tx_irretutorial_1nff_offer",6,"prices",0,0,0,"tx_irretutorial_1nff_price",11,,,,,,,
-,"e0de217e20de016e20c4cfa7531b1338","tx_irretutorial_1nff_offer",6,"prices",1,0,0,"tx_irretutorial_1nff_price",10,,,,,,,
 ,"bc4f857ec8124fdd793a76e7b45930af","tx_irretutorial_1nff_offer",7,"prices",0,0,0,"tx_irretutorial_1nff_price",12,,,,,,,
 ,"a94608071329f0b81c051da65b9c3e53","tx_irretutorial_1nff_offer",8,"prices",0,0,0,"tx_irretutorial_1nff_price",13,,,,,,,
 ,"43578810ac60f4e31c4c1eb52e37c4cb","tt_content",298,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",5,,,,,,,
 ,"5925fc8c83fd2759d4dbb7d2e87b9e28","tt_content",297,"tx_irretutorial_1nff_hotels",1,0,0,"tx_irretutorial_1nff_hotel",4,,,,,,,
 ,"d445fd78a1e37837ce5cb8cfca3c3159","tt_content",297,"tx_irretutorial_1nff_hotels",0,0,0,"tx_irretutorial_1nff_hotel",3,,,,,,,
+,"991035e9a032ce5a95b3dbc7f2f31471","tx_irretutorial_1nff_hotel",3,"offers",0,0,0,"tx_irretutorial_1nff_offer",5,,,,,,,
+,"3a59a2c65f05196774ee38fad12b11a8","tx_irretutorial_1nff_hotel",3,"offers",1,0,0,"tx_irretutorial_1nff_offer",6,,,,,,,
+,"a5b1bb284498b3b68a87adda927e894f","tx_irretutorial_1nff_offer",5,"prices",0,0,0,"tx_irretutorial_1nff_price",7,,,,,,,
+,"16a1e406f4a7130e58fb366e932e7508","tx_irretutorial_1nff_offer",5,"prices",2,0,0,"tx_irretutorial_1nff_price",9,,,,,,,
+,"141f3d182dee9a325a853a0ff79602d9","tx_irretutorial_1nff_offer",6,"prices",0,0,0,"tx_irretutorial_1nff_price",10,,,,,,,
+,"c6b8bf49d7d73a58a068814db5472e60","tx_irretutorial_1nff_offer",6,"prices",1,0,0,"tx_irretutorial_1nff_price",11,,,,,,,
+,"6898a967adae0bddf17e30a04cf9c0ad","tx_irretutorial_1nff_offer",5,"prices",1,0,0,"tx_irretutorial_1nff_price",8,,,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/DataSet/createContentNCreateRelation.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/DataSet/createContentNCreateRelation.csv
index b8db83be97f8d0928973ae65014a7376af975333..6699bbc386b2b7f91e6ef7dba9444d07732343ea 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/DataSet/createContentNCreateRelation.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/DataSet/createContentNCreateRelation.csv
@@ -26,4 +26,4 @@
 ,"aabda97b66f9b693f30d1faf442b37d6","sys_category",29,"items",1,0,0,"tt_content",298,,,,,
 ,"b102e2f9b1ed99b14d813363199cb281","sys_category",30,"items",0,0,0,"tt_content",298,,,,,
 ,"1b70a8e25c22645f7a49a79f57f3cf3f","sys_category",31,"parent",0,0,0,"sys_category",28,,,,,
-,"7dbec83366f1752942f4cc5adaebf64c","sys_category",32,"items",0,0,0,"tt_content",300,,,,,
+,"4c95eb2abf33739ef508c06e86605193","sys_category",32,"items",0,0,0,"tt_content",299,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/DataSet/createContentWCategoryNAddRelation.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/DataSet/createContentWCategoryNAddRelation.csv
index b8db83be97f8d0928973ae65014a7376af975333..6699bbc386b2b7f91e6ef7dba9444d07732343ea 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/DataSet/createContentWCategoryNAddRelation.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/DataSet/createContentWCategoryNAddRelation.csv
@@ -26,4 +26,4 @@
 ,"aabda97b66f9b693f30d1faf442b37d6","sys_category",29,"items",1,0,0,"tt_content",298,,,,,
 ,"b102e2f9b1ed99b14d813363199cb281","sys_category",30,"items",0,0,0,"tt_content",298,,,,,
 ,"1b70a8e25c22645f7a49a79f57f3cf3f","sys_category",31,"parent",0,0,0,"sys_category",28,,,,,
-,"7dbec83366f1752942f4cc5adaebf64c","sys_category",32,"items",0,0,0,"tt_content",300,,,,,
+,"4c95eb2abf33739ef508c06e86605193","sys_category",32,"items",0,0,0,"tt_content",299,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createCategoryNCreateRelation.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createCategoryNCreateRelation.csv
index 0892e821a74140e487c849af918be5bacc3aa0f4..87376155ed4c6889cb77c199c2dc3d89513779b7 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createCategoryNCreateRelation.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createCategoryNCreateRelation.csv
@@ -26,4 +26,4 @@
 ,"aabda97b66f9b693f30d1faf442b37d6","sys_category",29,"items",1,0,0,"tt_content",298,,,,,
 ,"b102e2f9b1ed99b14d813363199cb281","sys_category",30,"items",0,0,0,"tt_content",298,,,,,
 ,"1b70a8e25c22645f7a49a79f57f3cf3f","sys_category",31,"parent",0,0,0,"sys_category",28,,,,,
-,"7dbec83366f1752942f4cc5adaebf64c","sys_category",32,"items",0,0,0,"tt_content",300,,,,,
+,"4c95eb2abf33739ef508c06e86605193","sys_category",32,"items",0,0,0,"tt_content",299,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createCategoryWContentNAddRelation.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createCategoryWContentNAddRelation.csv
index 0892e821a74140e487c849af918be5bacc3aa0f4..87376155ed4c6889cb77c199c2dc3d89513779b7 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createCategoryWContentNAddRelation.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createCategoryWContentNAddRelation.csv
@@ -26,4 +26,4 @@
 ,"aabda97b66f9b693f30d1faf442b37d6","sys_category",29,"items",1,0,0,"tt_content",298,,,,,
 ,"b102e2f9b1ed99b14d813363199cb281","sys_category",30,"items",0,0,0,"tt_content",298,,,,,
 ,"1b70a8e25c22645f7a49a79f57f3cf3f","sys_category",31,"parent",0,0,0,"sys_category",28,,,,,
-,"7dbec83366f1752942f4cc5adaebf64c","sys_category",32,"items",0,0,0,"tt_content",300,,,,,
+,"4c95eb2abf33739ef508c06e86605193","sys_category",32,"items",0,0,0,"tt_content",299,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createContentNCreateRelation.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createContentNCreateRelation.csv
index b8db83be97f8d0928973ae65014a7376af975333..6699bbc386b2b7f91e6ef7dba9444d07732343ea 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createContentNCreateRelation.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createContentNCreateRelation.csv
@@ -26,4 +26,4 @@
 ,"aabda97b66f9b693f30d1faf442b37d6","sys_category",29,"items",1,0,0,"tt_content",298,,,,,
 ,"b102e2f9b1ed99b14d813363199cb281","sys_category",30,"items",0,0,0,"tt_content",298,,,,,
 ,"1b70a8e25c22645f7a49a79f57f3cf3f","sys_category",31,"parent",0,0,0,"sys_category",28,,,,,
-,"7dbec83366f1752942f4cc5adaebf64c","sys_category",32,"items",0,0,0,"tt_content",300,,,,,
+,"4c95eb2abf33739ef508c06e86605193","sys_category",32,"items",0,0,0,"tt_content",299,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createContentWCategoryNAddRelation.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createContentWCategoryNAddRelation.csv
index b8db83be97f8d0928973ae65014a7376af975333..6699bbc386b2b7f91e6ef7dba9444d07732343ea 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createContentWCategoryNAddRelation.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/createContentWCategoryNAddRelation.csv
@@ -26,4 +26,4 @@
 ,"aabda97b66f9b693f30d1faf442b37d6","sys_category",29,"items",1,0,0,"tt_content",298,,,,,
 ,"b102e2f9b1ed99b14d813363199cb281","sys_category",30,"items",0,0,0,"tt_content",298,,,,,
 ,"1b70a8e25c22645f7a49a79f57f3cf3f","sys_category",31,"parent",0,0,0,"sys_category",28,,,,,
-,"7dbec83366f1752942f4cc5adaebf64c","sys_category",32,"items",0,0,0,"tt_content",300,,,,,
+,"4c95eb2abf33739ef508c06e86605193","sys_category",32,"items",0,0,0,"tt_content",299,,,,,
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/modifyBothsOfRelation.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/modifyBothsOfRelation.csv
index e3cbf9adf07616c322b40b4a702947c0e91c558a..83368f4001102b9bb2a899db3df4115021792bba 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/modifyBothsOfRelation.csv
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/DataSet/modifyBothsOfRelation.csv
@@ -24,4 +24,4 @@
 ,"aabda97b66f9b693f30d1faf442b37d6","sys_category",29,"items",1,0,0,"tt_content",298,,,,,
 ,"b102e2f9b1ed99b14d813363199cb281","sys_category",30,"items",0,0,0,"tt_content",298,,,,,
 ,"1b70a8e25c22645f7a49a79f57f3cf3f","sys_category",31,"parent",0,0,0,"sys_category",28,,,,,
-,"6848919a0f5c9f440c5abb9ee00b9d3a","sys_category",28,"items",0,0,0,"tt_content",299,,,,,
+,"58b0861c2821b9aa8c036f51c9992938","sys_category",28,"items",0,0,0,"tt_content",297,,,,,