-
Bug
-
Resolution: Won't Fix
-
Minor
-
None
-
2.7.1
-
MOODLE_27_STABLE
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') {
- is a regression caused by
-
MDL-35418 Merge GSOC SCORM work
- Closed