MDL-63727 mod_scorm: fix typo in sco_launched URL

This commit is contained in:
Davo Smith
2018-10-31 21:39:34 +01:00
committed by Matteo Scaramuccia
parent 8b019fb709
commit 54a5cc6187
+1 -1
View File
@@ -76,7 +76,7 @@ class sco_launched extends \core\event\base {
* @return \moodle_url
*/
public function get_url() {
return new \moodle_url('/mod/scorm/player.php', array('id' => $this->contextinstanceid, 'scoid' => $this->objectid));
return new \moodle_url('/mod/scorm/player.php', array('cm' => $this->contextinstanceid, 'scoid' => $this->objectid));
}
/**