From 0ef7e7e542f0c89af259de395ee3facddeb3938e Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 4 Jan 2008 05:20:00 +0000 Subject: [PATCH] Fixed the navigation on the course assign roles tab MDL-12828 --- admin/roles/tabs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/roles/tabs.php b/admin/roles/tabs.php index e1549b4f81..be51f4a714 100755 --- a/admin/roles/tabs.php +++ b/admin/roles/tabs.php @@ -47,8 +47,8 @@ if ($currenttab != 'update') { $course = get_record('course', 'id', $context->instanceid); require_login($course); - $navlinks[] = array('name' => $course->shortname, - 'link' => "$CFG->wwwroot/course/view.php?id=$course->id", + $navlinks[] = array('name' => get_string('roles'), + 'link' => "$CFG->wwwroot/admin/roles/assign.php?contextid=$context->id", 'type' => 'misc'); $navigation = build_navigation($navlinks); print_header($streditcoursesettings, $course->fullname, $navigation); -- 2.39.5