-
Improvement
-
Resolution: Fixed
-
Minor
-
2.7.5
-
MOODLE_27_STABLE
-
MOODLE_29_STABLE
-
master_
MDL-49054 -
Matteo found some debugging code in a SCORM 2004 related method, https://github.com/moodle/moodle/blob/e435f174d3988785ebe8bd6a23e5aa2df91c16d6/mod/scorm/locallib.php#L498:
ob_start();
|
$filepath = $CFG->dataroot."\\temp\\tempfile.txt";
|
$fh = fopen($filepath, "a+");
|
var_dump($track);
|
$string = ob_get_clean();
|
fwrite($fh, $string);
|
fclose($fh);
|
We should probably remove this or make a concious decision to ignore it as it's part of the SCORM 2004 code.
- Discovered while testing
-
MDL-48680 Add score and status submission events to SCORM activity
- Closed