From b8750d9399112de32265463a808a0b27e226b2d1 Mon Sep 17 00:00:00 2001 From: Robbie Averill Date: Wed, 28 Jun 2017 10:05:38 +1200 Subject: [PATCH] FIX Delete Page_Controller from SS4 compat branch I assume this turned up in a merge-up - having this around breaks breaks things. Should be PageController now. --- mysite/code/Page_Controller.php | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 mysite/code/Page_Controller.php diff --git a/mysite/code/Page_Controller.php b/mysite/code/Page_Controller.php deleted file mode 100644 index f661c42..0000000 --- a/mysite/code/Page_Controller.php +++ /dev/null @@ -1,29 +0,0 @@ - - * array ( - * 'action', // anyone can access this action - * 'action' => true, // same as above - * 'action' => 'ADMIN', // you must have ADMIN permissions to access this action - * 'action' => '->checkAction' // you can only access this action if $this->checkAction() returns true - * ); - * - * - * @var array - */ - private static $allowed_actions = array( - ); - - public function init() - { - parent::init(); - // You can include any CSS or JS required by your project here. - // See: http://doc.silverstripe.org/framework/en/reference/requirements - } -}