mirror of
https://github.com/moodle/moodle.git
synced 2025-04-17 22:45:54 +02:00
Merge branch 'MDL-36612-master-int' of git://github.com/FMCorz/moodle
This commit is contained in:
commit
2a594e13b1
@ -1465,6 +1465,14 @@ function xmldb_main_upgrade($oldversion) {
|
||||
upgrade_main_savepoint(true, 2012111200.00);
|
||||
}
|
||||
|
||||
if ($oldversion < 2012111200.01) {
|
||||
// Force the rebuild of the cache of every courses, some cached information could contain wrong icon references.
|
||||
rebuild_course_cache();
|
||||
|
||||
// Main savepoint reached.
|
||||
upgrade_main_savepoint(true, 2012111200.01);
|
||||
}
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -30,7 +30,7 @@
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
|
||||
$version = 2012111200.00; // YYYYMMDD = weekly release date of this DEV branch
|
||||
$version = 2012111200.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