Fix CMSBatchActionHandler::$allowed_actions

Regression from earlier API change to deny actions unless specified
This commit is contained in:
Ingo Schommer 2013-06-28 10:07:57 +02:00
parent 973a23fac8
commit a9f150126c

View File

@ -16,6 +16,12 @@ class CMSBatchActionHandler extends RequestHandler {
'$BatchAction/confirmation' => 'handleConfirmation',
'$BatchAction' => 'handleBatchAction',
);
private static $allowed_actions = array(
'handleBatchAction',
'handleApplicablePages',
'handleConfirmation',
);
protected $parentController;