BUG Fixed missing allowed_actions on UploadField_SelectHandler

This commit is contained in:
Damian Mooyman 2013-07-04 09:26:53 +12:00 committed by Simon Welsh
parent d003c96c62
commit a862b4da99
1 changed files with 4 additions and 0 deletions

View File

@ -1490,6 +1490,10 @@ class UploadField_SelectHandler extends RequestHandler {
'' => 'index',
);
private static $allowed_actions = array(
'Form'
);
public function __construct($parent, $folderName = null) {
$this->parent = $parent;
$this->folderName = $folderName;