Index: temp_moodle_dev/moodle/mod/scorm/loadSCO.php =================================================================== RCS file: /usr/local/cvsroot/temp_moodle_dev/moodle/mod/scorm/loadSCO.php,v diff -u -r1.1 -r1.2 --- temp_moodle_dev/moodle/mod/scorm/loadSCO.php 14 Nov 2008 06:29:40 -0000 1.1 +++ temp_moodle_dev/moodle/mod/scorm/loadSCO.php 14 Jan 2009 02:52:38 -0000 1.2 @@ -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; + } } }