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

This commit is contained in:
Sam Hemelryk
2011-12-06 13:34:53 +13:00
parent 4828564296
commit d183cb5d85
+10
View File
@@ -1135,6 +1135,16 @@ class global_navigation extends navigation_node {
}
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;