SCORM MDL-25124 report attempts correctly for SCORM 1.2 objects that don't return a score.raw - thanks to Greg Franklin for report and fix!

This commit is contained in:
Dan Marsden
2010-11-10 23:40:00 +00:00
parent c557816312
commit 78b203ca3c
+3
View File
@@ -1093,6 +1093,9 @@ function scorm_get_attempt_count($userid, $scorm, $attempts_only=false) {
global $DB;
$attemptcount = 0;
$element = 'cmi.core.score.raw';
if ($scorm->grademethod == GRADESCOES) {
$element = 'cmi.core.lesson_status';
}
if ($scorm->version == 'scorm1_3') {
$element = 'cmi.score.raw';
}