Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Won't Fix
-
2.7.1
-
None
-
MOODLE_27_STABLE
Description
On line 460 (https://github.com/moodle/moodle/blob/master/mod/scorm/module.js#L460), we have
if (typeof result.nextactivity.id != undefined) {
which always evaluates to true. It should be
if (typeof result.nextactivity.id != 'undefined') {
Attachments
Issue Links
- is a regression caused by
-
MDL-35418 Merge GSOC SCORM work
-
- Closed
-