From: moodler Date: Fri, 4 Jan 2008 05:20:00 +0000 (+0000) Subject: Fixed the navigation on the course assign roles tab MDL-12828 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0ef7e7e542f0c89af259de395ee3facddeb3938e;p=moodle.git Fixed the navigation on the course assign roles tab MDL-12828 --- 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);