MDL-63727 mod_scorm: fix typo in sco_launched URL

This commit is contained in:
Davo Smith
2018-10-31 22:42:05 +01:00
committed by Matteo Scaramuccia
parent e1e20d0c9b
commit 73c8d34ab8
+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));
}
/**