mirror of
https://github.com/moodle/moodle.git
synced 2025-04-07 17:33:18 +02:00
Merge branch 'MDL-64314_master' of git://github.com/dmonllao/moodle
This commit is contained in:
commit
45dc542a40
@ -104,7 +104,10 @@ $messageproviders = array (
|
||||
|
||||
// User insights.
|
||||
'insights' => array (
|
||||
'capability' => 'moodle/analytics:listinsights'
|
||||
'defaults' => [
|
||||
'popup' => MESSAGE_PERMITTED + MESSAGE_DEFAULT_LOGGEDIN + MESSAGE_DEFAULT_LOGGEDOFF,
|
||||
'email' => MESSAGE_PERMITTED + MESSAGE_DEFAULT_LOGGEDOFF,
|
||||
]
|
||||
),
|
||||
|
||||
// Message contact requests.
|
||||
|
@ -2719,5 +2719,12 @@ function xmldb_main_upgrade($oldversion) {
|
||||
upgrade_main_savepoint(true, 2019011801.03);
|
||||
}
|
||||
|
||||
if ($oldversion < 2019021500.01) {
|
||||
$insights = $DB->get_record('message_providers', ['component' => 'moodle', 'name' => 'insights']);
|
||||
$insights->capability = null;
|
||||
$DB->update_record('message_providers', $insights);
|
||||
upgrade_main_savepoint(true, 2019021500.01);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2019021500.00; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
$version = 2019021500.01; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
// RR = release increments - 00 in DEV branches.
|
||||
// .XX = incremental changes.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user