mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-57118 boost: Participants cog shows too much
Because 0 == 'participants' in php.
This commit is contained in:
parent
0fbe41f4cd
commit
a955cf531c
@ -620,7 +620,7 @@ class core_renderer extends \core_renderer {
|
||||
$navbarnode = end($items);
|
||||
// We only want to show the menu on the first page of the activity. This means
|
||||
// the breadcrumb has no additional nodes.
|
||||
if ($navbarnode && ($navbarnode->key == $node->key && $navbarnode->type == $node->type)) {
|
||||
if ($navbarnode && ($navbarnode->key === $node->key && $navbarnode->type == $node->type)) {
|
||||
$buildmenu = true;
|
||||
}
|
||||
}
|
||||
@ -636,7 +636,7 @@ class core_renderer extends \core_renderer {
|
||||
$items = $this->page->navbar->get_items();
|
||||
$navbarnode = end($items);
|
||||
|
||||
if ($navbarnode && ($navbarnode->key == 'participants')) {
|
||||
if ($navbarnode && ($navbarnode->key === 'participants')) {
|
||||
$node = $this->page->settingsnav->find('users', navigation_node::TYPE_CONTAINER);
|
||||
if ($node) {
|
||||
// Build an action menu based on the visible nodes from this navigation tree.
|
||||
|
Loading…
x
Reference in New Issue
Block a user