Merge branch 'MDL-64314-master-upgrade-fix' of git://github.com/abgreeve/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2019-02-18 16:49:50 +01:00
commit b7b914fbdc

View File

@ -2721,8 +2721,10 @@ function xmldb_main_upgrade($oldversion) {
if ($oldversion < 2019021500.01) {
$insights = $DB->get_record('message_providers', ['component' => 'moodle', 'name' => 'insights']);
$insights->capability = null;
$DB->update_record('message_providers', $insights);
if (!empty($insights)) {
$insights->capability = null;
$DB->update_record('message_providers', $insights);
}
upgrade_main_savepoint(true, 2019021500.01);
}