Skip to content

Commit

Permalink
Merge branch 'master_MDL-58015' of https://github.com/danmarsden/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
David Monllao committed Jul 31, 2018
2 parents f3e240e + 7c75e02 commit 834ee94
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions mod/scorm/view.php
Expand Up @@ -66,23 +66,22 @@

$launch = false; // Does this automatically trigger a launch based on skipview.
if (!empty($scorm->popup)) {
$orgidentifier = '';

$scoid = 0;
$orgidentifier = '';

$result = scorm_get_toc($USER, $scorm, $cm->id, TOCFULLURL);
// Set last incomplete sco to launch first.
if (!empty($result->sco->id)) {
$scoid = $result->sco->id;
$sco = $result->sco;
} else {
if ($sco = scorm_get_sco($scorm->launch, SCO_ONLY)) {
if (($sco->organization == '') && ($sco->launch == '')) {
$orgidentifier = $sco->identifier;
} else {
$orgidentifier = $sco->organization;
}
$scoid = $sco->id;
$sco = scorm_get_sco($scorm->launch, SCO_ONLY);
}
if (!empty($sco)) {
$scoid = $sco->id;
if (($sco->organization == '') && ($sco->launch == '')) {
$orgidentifier = $sco->identifier;
} else {
$orgidentifier = $sco->organization;
}
}

Expand Down

0 comments on commit 834ee94

Please sign in to comment.