Skip to content

Commit

Permalink
MDL-31463 - navigation - added a context check in the navigation for …
Browse files Browse the repository at this point in the history
…fullname permission.
  • Loading branch information
abgreeve committed Feb 9, 2012
1 parent a1063d9 commit 65c29e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/navigationlib.php
Expand Up @@ -1928,7 +1928,8 @@ protected function load_for_user($user=null, $forceforcontext=false) {
return false;
}
// Add a branch for the current user
$usernode = $usersnode->add(fullname($user, true), $userviewurl, self::TYPE_USER, null, $user->id);
$canseefullname = has_capability('moodle/site:viewfullnames', $coursecontext);
$usernode = $usersnode->add(fullname($user, $canseefullname), $userviewurl, self::TYPE_USER, null, $user->id);

if ($this->page->context->contextlevel == CONTEXT_USER && $user->id == $this->page->context->instanceid) {
$usernode->make_active();
Expand Down

0 comments on commit 65c29e2

Please sign in to comment.