From ea508d517981672faea656caba95ebcab51bbae4 Mon Sep 17 00:00:00 2001 From: Francisco arenas Date: Tue, 28 May 2013 13:49:12 -0300 Subject: [PATCH] Update GoogleSitemapController.php allowed_actions modified from private to public --- code/controllers/GoogleSitemapController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/GoogleSitemapController.php b/code/controllers/GoogleSitemapController.php index 5482f3f..2e1bddb 100644 --- a/code/controllers/GoogleSitemapController.php +++ b/code/controllers/GoogleSitemapController.php @@ -17,7 +17,7 @@ class GoogleSitemapController extends Controller { /** * @var array */ - private static $allowed_actions = array( + public static $allowed_actions = array( 'index', 'sitemap' ); @@ -70,4 +70,4 @@ class GoogleSitemapController extends Controller { return new SS_HTTPResponse('Page not found', 404); } } -} \ No newline at end of file +}