mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX: parent::init is not called first
In the controller's init function, parent::init() should be called before any other method calls.
This commit is contained in:
parent
512c7140cc
commit
bd5abb62ff
@ -47,6 +47,7 @@ SilverStripe what values to include in the feed.
|
||||
class Page_Controller extends ContentController {
|
||||
private static $allowed_actions = array('rss');
|
||||
public function init() {
|
||||
parent::init();
|
||||
// linkToFeed will add an appropriate HTML link tag to the website
|
||||
// <head> tag to notify web browsers that an RSS feed is available
|
||||
// for this page. You can include as many feeds on the page as you
|
||||
@ -56,7 +57,6 @@ SilverStripe what values to include in the feed.
|
||||
// In this example $this->Link("rss") refers to the *rss* function
|
||||
// we define below.
|
||||
RSSFeed::linkToFeed($this->Link("rss"), "RSS feed of this blog");
|
||||
parent::init();
|
||||
}
|
||||
public function rss() {
|
||||
// Creates a new RSS Feed list
|
||||
@ -87,8 +87,8 @@ updates. Update mysite/code/Page.php to something like this:
|
||||
private static $allowed_actions = array('rss');
|
||||
|
||||
public function init() {
|
||||
RSSFeed::linkToFeed($this->Link() . "rss", "10 Most Recently Updated Pages");
|
||||
parent::init();
|
||||
RSSFeed::linkToFeed($this->Link() . "rss", "10 Most Recently Updated Pages");
|
||||
}
|
||||
|
||||
public function rss() {
|
||||
@ -130,8 +130,8 @@ for all the students as we've seen before.
|
||||
class Page_Controller extends ContentController {
|
||||
private static $allowed_actions = array('students');
|
||||
public function init() {
|
||||
RSSFeed::linkToFeed($this->Link("students"), "Students feed");
|
||||
parent::init();
|
||||
RSSFeed::linkToFeed($this->Link("students"), "Students feed");
|
||||
}
|
||||
public function students() {
|
||||
$rss = new RSSFeed(
|
||||
|
Loading…
Reference in New Issue
Block a user