1
0
mirror of https://github.com/moodle/moodle.git synced 2025-04-24 18:04:43 +02:00

MDL-49070 core_registration: removed now unused config setting

This commit is contained in:
Andrew Davis 2015-03-20 20:50:48 +08:00
parent f47e4eb4a0
commit 24aac597c5
2 changed files with 6 additions and 1 deletions

@ -4247,5 +4247,10 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2015031400.00);
}
if ($oldversion < 2015031900.01) {
unset_config('crontime', 'registration');
upgrade_main_savepoint(true, 2015031900.01);
}
return true;
}

@ -29,7 +29,7 @@
defined('MOODLE_INTERNAL') || die();
$version = 2015031900.00; // YYYYMMDD = weekly release date of this DEV branch.
$version = 2015031900.01; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.