Moodle

SCORM visibility vs Roles

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: Major Major
  • Resolution: Fixed
  • Affects Version/s: 1.8.2
  • Fix Version/s: 1.8.5
  • Component/s: SCORM
  • Labels:
    None
  • Affected Branches:
    MOODLE_18_STABLE
  • Fixed Branches:
    MOODLE_18_STABLE

Description

Good morning:

When the capability "moodle/course:viewhiddenactivities" is allowed for a role , if you try to access to a SCORM module and this module is hidden, it indicates that the resource is hidden and that it can't be shown.

I think the error is on this line of the file " /scorm/view.php":

if (empty($cm->visible) and
!has_capability('moodle/course:manageactivities', $context)) { notice(get_string("activityiscurrentlyhidden")); }
If we replace these lines for the following ones, it works correctly.
.

if (empty($cm->visible) and
!has_capability('moodle/course:viewhiddenactivities, $context)) { notice(get_string("activityiscurrentlyhidden")); } }

Issue Links

Activity

Hide
Dan Marsden added a comment -

assigning to me - will test fix and look at patching it.

Dan

Show
Dan Marsden added a comment - assigning to me - will test fix and look at patching it. Dan
Hide
Dan Marsden added a comment -

fixed by Dan P already.

Show
Dan Marsden added a comment - fixed by Dan P already.
Hide
Dan Marsden added a comment -

closing....

Show
Dan Marsden added a comment - closing....
Hide
Dan Marsden added a comment -

oops - forgot to set fixed version.

Show
Dan Marsden added a comment - oops - forgot to set fixed version.

People

Vote (0)
Watch (0)

Dates

  • Created:
    Updated:
    Resolved: