mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 12:34:28 +01:00
Fixed a typo in AICC launch string
This commit is contained in:
parent
57d5df5f2b
commit
385b6df314
@ -81,7 +81,10 @@
|
||||
}
|
||||
if (scorm_external_link($sco->launch)) {
|
||||
if ($version == 'AICC') {
|
||||
$result = $sco->launch.$connector.'aicc_sid='.$CFG->sesskey.'&aicc_url='.$CFG->wwwroot.'/mod/scorm/aicc.php&'.$sco->parameters;
|
||||
if (!empty($sco->parameters)) {
|
||||
$sco->parameters = '&'. $sco->parameters;
|
||||
}
|
||||
$result = $sco->launch.$connector.'aicc_sid='.sesskey().'&aicc_url='.$CFG->wwwroot.'/mod/scorm/aicc.php'.$sco->parameters;
|
||||
} else {
|
||||
$result = $sco->launch.$connector.$sco->parameters;
|
||||
}
|
||||
|
@ -145,7 +145,7 @@
|
||||
<tr><td nowrap>
|
||||
<?php
|
||||
$sco = scorm_display_structure($scorm,'scormlist',$currentorg,$scoid,$mode,true);
|
||||
add_to_log($course->id, 'scorm', 'view', "reviewscorm.php?id=$cm->id&uid=$USER->id&scoid=$sco->id", "$scorm->id");
|
||||
add_to_log($course->id, 'scorm', 'view', "playscorm.php?id=$cm->id&scoid=$sco->id", "$scorm->id");
|
||||
?>
|
||||
</td></tr>
|
||||
<tr><td align="center">
|
||||
@ -161,7 +161,6 @@
|
||||
</td>
|
||||
<td class="fullscreen" height="90%">
|
||||
<iframe name="main" class="fullscreen" height="640" src="loadSCO.php?id=<?php echo $cm->id.$scoidstring ?>"></iframe>
|
||||
<!--<iframe name="main" class="fullscreen" height="100%" src="loadSCO.php?id=<?php echo $cm->id.$scoidstring ?>"></iframe> -->
|
||||
</td></tr>
|
||||
</table>
|
||||
</body>
|
||||
|
Loading…
x
Reference in New Issue
Block a user