Add ContentController->handleWidget() to $allowed_actions

Required by recent $allowed_actions security fix
This commit is contained in:
Ingo Schommer 2013-02-18 00:10:06 +01:00
parent eecd34868f
commit 190e0b8a47

View File

@ -29,6 +29,7 @@ class ContentController extends Controller {
public static $allowed_actions = array ( public static $allowed_actions = array (
'PageComments', 'PageComments',
'successfullyinstalled', 'successfullyinstalled',
'handleWidget',
'deleteinstallfiles' // secured through custom code 'deleteinstallfiles' // secured through custom code
); );