FIX $allowed_actions declaration

This commit is contained in:
colymba 2013-06-26 19:11:31 +03:00
parent 8a1eff6839
commit 35bfd865ec
2 changed files with 14 additions and 1 deletions

View File

@ -37,6 +37,13 @@ class GridFieldBulkImageUpload_Request extends RequestHandler {
*/
protected $recordCMSFieldList;
/**
*
*/
private static $allowed_actions = array(
'index', 'upload', 'update', 'cancel'
);
/**
*
*/

View File

@ -24,7 +24,13 @@ class GridFieldBulkManager_Request extends RequestHandler {
*/
protected $controller;
/**
*
*/
private static $allowed_actions = array(
'edit', 'update', 'unlink', 'delete'
);
/**
*
*/