Bug #17876 » 0006875_v3.patch
t3lib/class.t3lib_tcemain.php (Arbeitskopie) | ||
---|---|---|
// move the records
|
||
if (isset($dbAnalysis)) {
|
||
$destinationPageId = $destPid;
|
||
foreach ($dbAnalysis->itemArray as $v) {
|
||
$this->moveRecord($v['table'],$v['id'],$destPid);
|
||
// Move the first child to the beginning and all others as follower of each previous child:
|
||
$this->moveRecord($v['table'], $v['id'], $destinationPageId);
|
||
$destinationPageId = -$v['id'];
|
||
}
|
||
}
|
||
}
|