MDL-30582 navigation: Fixed regression in generation of front page modules

This commit is contained in:
Sam Hemelryk
2011-12-06 13:32:59 +13:00
parent 42f6b3f1d7
commit e52a5d3ab2
+10
View File
@@ -1240,6 +1240,16 @@ class global_navigation extends navigation_node {
$sections = $this->load_course_sections($course, $coursenode);
break;
}
} else {
// We need to check if the user is viewing a front page module.
// If so then there is potentially more content to load yet for that
// module.
if ($this->page->context->contextlevel == CONTEXT_MODULE) {
$activitynode = $this->rootnodes['site']->get($this->page->cm->id, navigation_node::TYPE_ACTIVITY);
if ($activitynode) {
$this->load_activity($this->page->cm, $this->page->course, $activitynode);
}
}
}
$limit = 20;