1
0
mirror of https://github.com/moodle/moodle.git synced 2025-04-25 02:16:06 +02:00

MDL-49187 mod_lti: Fix tool config lookup

Changed code to look for a tool ID before then matching on the URL.
This commit is contained in:
spvickers 2015-03-03 18:49:58 -07:00
parent dba564c7db
commit 64ca282207

@ -65,8 +65,9 @@ if ($l) { // Two ways to specify the module.
$course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
$tool = lti_get_tool_by_url_match($lti->toolurl);
if ($tool) {
if (!empty($lti->typeid)) {
$toolconfig = lti_get_type_config($lti->typeid);
} else if ($tool = lti_get_tool_by_url_match($lti->toolurl)) {
$toolconfig = lti_get_type_config($tool->id);
} else {
$toolconfig = array();