Index: temp_moodle_dev/moodle/mod/scorm/loadSCO.php =================================================================== diff -u -r5251d2a62e0e78377219456d6bba613eb2d1fd26 -rd12b9e433f54f9f97f0c46aa03e3db09b9226233 --- temp_moodle_dev/moodle/mod/scorm/loadSCO.php (.../loadSCO.php) (revision 5251d2a62e0e78377219456d6bba613eb2d1fd26) +++ temp_moodle_dev/moodle/mod/scorm/loadSCO.php (.../loadSCO.php) (revision d12b9e433f54f9f97f0c46aa03e3db09b9226233) @@ -110,7 +110,11 @@ //note: do not convert this to use get_file_url()! // SCORM does not work without slasharguments anyway and there might be some extra ?xx=yy params // see MDL-16060 - $result = $CFG->wwwroot.'/file.php/'.$scorm->course.'/'.$basedir.'/'.$launcher; + if($scorm->is_lams==1){ + $result = $CFG->wwwroot.'/file.php/'.$launcher; + }else{ + $result = $CFG->wwwroot.'/file.php/'.$scorm->course.'/'.$basedir.'/'.$launcher; + } } }