Merge branch 'MDL-39936-master' of git://github.com/danpoltawski/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2013-06-04 00:04:12 +02:00
commit 5431fda180

View File

@ -2139,6 +2139,9 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2013042300.00);
}
// Moodle v2.5.0 release upgrade line.
// Put any upgrade step following this.
if ($oldversion < 2013051400.01) {
// Fix incorrect cc-nc url. Unfortunately the license 'plugins' do
// not give a mechanism to do this.
@ -2160,9 +2163,5 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2013051400.01);
}
// Moodle v2.5.0 release upgrade line.
// Put any upgrade step following this.
return true;
}