BUG Use correct formaction for doRollback exemption #1378

This commit is contained in:
Andrew Aitken-Fincham 2016-02-17 10:20:38 +13:00
parent 5925883330
commit 644c807031

View File

@ -644,7 +644,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
// if($form->Fields()->hasTabset()) $form->Fields()->findOrMakeTab('Root')->setTemplate('CMSTabSet');
$form->setAttribute('data-pjax-fragment', 'CurrentForm');
// Set validation exemptions for specific actions
$form->setValidationExemptActions(array('restore', 'revert', 'deletefromlive', 'rollback'));
$form->setValidationExemptActions(array('restore', 'revert', 'deletefromlive', 'rollback', 'doRollback'));
// Announce the capability so the frontend can decide whether to allow preview or not.
if(in_array('CMSPreviewable', class_implements($record))) {