Update GoogleSitemapController.php

allowed_actions modified from private to public
This commit is contained in:
Francisco arenas 2013-05-28 13:49:12 -03:00
parent a233c2d514
commit ea508d5179

View File

@ -17,7 +17,7 @@ class GoogleSitemapController extends Controller {
/** /**
* @var array * @var array
*/ */
private static $allowed_actions = array( public static $allowed_actions = array(
'index', 'index',
'sitemap' 'sitemap'
); );
@ -70,4 +70,4 @@ class GoogleSitemapController extends Controller {
return new SS_HTTPResponse('Page not found', 404); return new SS_HTTPResponse('Page not found', 404);
} }
} }
} }