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
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}
}
}