Details
Description
Hi,
I have problem with define UserRole, the problem is
Though i set the option View hidden activities (moodle/course:viewhiddenactivities):Allow
for the user role there is no effect in the course.
If the user having the role navigates the course. it's showing the message
"Sorry, this activity is currently hidden".
Then i changed the code in the moodle/mod/scrom/view.php by changing the code...
if (empty($cm->visible) and !has_capability('moodle/course:manageactivities', $context)) {
notice(get_string("activityiscurrentlyhidden"));
}
to
if (empty($cm->visible) and !has_capability('moodle/course:viewhiddenactivities', $context)) {
notice(get_string("activityiscurrentlyhidden"));
}
its working fine....
I hope it's a bug..check this out
Attachments
Issue Links
- is duplicated by
-
MDL-11362 SCORM visibility vs Roles
-
- Closed
-