Merge branch '3.3' into 3.4

This commit is contained in:
Daniel Hensby 2016-07-12 01:08:54 +01:00
commit a2657b519a
No known key found for this signature in database
GPG Key ID: 229831A941962E26

View File

@ -545,6 +545,8 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
return $id;
}
else if($id && is_numeric($id)) {
$currentStage = Versioned::get_reading_mode();
if($this->getRequest()->getVar('Version')) {
$versionID = (int) $this->getRequest()->getVar('Version');
}
@ -562,7 +564,6 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
singleton($treeClass)->flushCache();
$record = DataObject::get_by_id($treeClass, $id);
if($record) Versioned::set_reading_mode('');
}
// Then, try getting a deleted record
@ -581,6 +582,9 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
$record = null;
}*/
// Set the reading mode back to what it was.
Versioned::set_reading_mode($currentStage);
return $record;
} else if(substr($id,0,3) == 'new') {