MINOR Added 'index' to $allowed_actions on BlogHolder, BlogTree, BlogEntry to comply to new RequestHandler API

This commit is contained in:
Ingo Schommer 2009-09-10 06:08:22 +00:00
parent 9462d240b5
commit 26622686cc
3 changed files with 3 additions and 0 deletions

View File

@ -184,6 +184,7 @@ class BlogEntry extends Page {
class BlogEntry_Controller extends Page_Controller {
static $allowed_actions = array(
'index',
'trackbackping',
'unpublishPost',
'PageComments',

View File

@ -132,6 +132,7 @@ class BlogHolder extends BlogTree implements PermissionProvider {
class BlogHolder_Controller extends BlogTree_Controller {
static $allowed_actions = array(
'index',
'tag',
'postblog' => 'BLOGMANAGEMENT',
'post' => 'BLOGMANAGEMENT',

View File

@ -241,6 +241,7 @@ class BlogURL {
class BlogTree_Controller extends Page_Controller {
static $allowed_actions = array(
'index',
'rss',
);