mirror of
https://github.com/moodle/moodle.git
synced 2025-04-15 05:25:08 +02:00
Merge branch 'MDL-72675' of git://github.com/paulholden/moodle
This commit is contained in:
commit
44f06eddc1
@ -2853,5 +2853,14 @@ function xmldb_main_upgrade($oldversion) {
|
||||
upgrade_main_savepoint(true, 2021092400.01);
|
||||
}
|
||||
|
||||
if ($oldversion < 2021092400.03) {
|
||||
// Remove repository_picasa configuration (unless it has manually been added back).
|
||||
if (!file_exists($CFG->dirroot . '/repository/picasa/version.php')) {
|
||||
unset_all_config_for_plugin('repository_picasa');
|
||||
}
|
||||
|
||||
upgrade_main_savepoint(true, 2021092400.03);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2021092400.02; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
$version = 2021092400.03; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
// RR = release increments - 00 in DEV branches.
|
||||
// .XX = incremental changes.
|
||||
$release = '4.0dev (Build: 20210924)'; // Human-friendly version name
|
||||
|
Loading…
x
Reference in New Issue
Block a user