MDL-44548 mod_scorm: force an external sync to check for updated files.

also remove some globals no longer needed (not used in function or in required files.
This commit is contained in:
Dan Marsden 2014-08-14 20:33:05 +12:00
parent 6597413d41
commit 2d9a4a5f93

View File

@ -848,9 +848,9 @@ function scorm_get_all_attempts($scormid, $userid) {
}
function scorm_view_display ($user, $scorm, $action, $cm) {
global $CFG, $DB, $PAGE, $OUTPUT, $COURSE;
global $CFG, $DB, $OUTPUT;
if ($scorm->scormtype != SCORM_TYPE_LOCAL && $scorm->updatefreq == SCORM_UPDATE_EVERYTIME) {
if ($scorm->updatefreq == SCORM_UPDATE_EVERYTIME) {
scorm_parse($scorm, false);
}
@ -952,7 +952,7 @@ function scorm_simple_play($scorm, $user, $context, $cmid) {
return $result;
}
if ($scorm->scormtype != SCORM_TYPE_LOCAL && $scorm->updatefreq == SCORM_UPDATE_EVERYTIME) {
if ($scorm->updatefreq == SCORM_UPDATE_EVERYTIME) {
scorm_parse($scorm, false);
}
$scoes = $DB->get_records_select('scorm_scoes', 'scorm = ? AND '.