### Eclipse Workspace Patch 1.0 #P typo3core Index: t3lib/class.t3lib_tcemain.php =================================================================== --- t3lib/class.t3lib_tcemain.php (revision 5351) +++ t3lib/class.t3lib_tcemain.php (working copy) @@ -3651,6 +3651,8 @@ // move the records if (isset($dbAnalysis)) { + //as records are inserted on top we must reverse recordlist to be correct aferwards + $dbAnalysis->itemArray = array_reverse($dbAnalysis->itemArray); foreach ($dbAnalysis->itemArray as $v) { $this->moveRecord($v['table'],$v['id'],$destPid); }