Merge branch '3.4' into 3

This commit is contained in:
Daniel Hensby 2016-07-12 01:12:07 +01:00
commit 00d16ec276
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; return $id;
} }
else if($id && is_numeric($id)) { else if($id && is_numeric($id)) {
$currentStage = Versioned::get_reading_mode();
if($this->getRequest()->getVar('Version')) { if($this->getRequest()->getVar('Version')) {
$versionID = (int) $this->getRequest()->getVar('Version'); $versionID = (int) $this->getRequest()->getVar('Version');
} }
@ -562,7 +564,6 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
singleton($treeClass)->flushCache(); singleton($treeClass)->flushCache();
$record = DataObject::get_by_id($treeClass, $id); $record = DataObject::get_by_id($treeClass, $id);
if($record) Versioned::set_reading_mode('');
} }
// Then, try getting a deleted record // Then, try getting a deleted record
@ -581,6 +582,9 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
$record = null; $record = null;
}*/ }*/
// Set the reading mode back to what it was.
Versioned::set_reading_mode($currentStage);
return $record; return $record;
} else if(substr($id,0,3) == 'new') { } else if(substr($id,0,3) == 'new') {