mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
FIX revert to this button after archiving
This commit is contained in:
parent
9ae6fbffe1
commit
a73d5b4177
@ -1186,7 +1186,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
||||
$id = (isset($data['ID'])) ? (int) $data['ID'] : null;
|
||||
$version = (isset($data['Version'])) ? (int) $data['Version'] : null;
|
||||
|
||||
$record = DataObject::get_by_id($this->stat('tree_class'), $id);
|
||||
$record = Versioned::get_latest_version($this->stat('tree_class'), $id);
|
||||
if($record && !$record->canEdit()) return Security::permissionFailure($this);
|
||||
|
||||
if($version) {
|
||||
|
@ -254,8 +254,7 @@
|
||||
*
|
||||
* A "rollback" to a specific version needs user confirmation.
|
||||
*/
|
||||
$('.cms-edit-form .Actions #Form_EditForm_action_rollback').entwine({
|
||||
|
||||
$('.cms-edit-form .Actions #Form_EditForm_action_doRollback').entwine({
|
||||
/**
|
||||
* Function: onclick
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user