Skip to content

Commit

Permalink
MDL-34121 bump versions to efectively get the upgrade performed.
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Jul 2, 2012
1 parent d207a88 commit 44cb29a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions lib/db/upgrade.php
Expand Up @@ -871,7 +871,12 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2012062000.01);
}

if ($oldversion < 2012062500.01) {

// Moodle v2.3.0 release upgrade line
// Put any upgrade step following this


if ($oldversion < 2012062500.02) {
// Drop some old backup tables, not used anymore

// Define table backup_files to be dropped
Expand All @@ -891,13 +896,9 @@ function xmldb_main_upgrade($oldversion) {
}

// Main savepoint reached
upgrade_main_savepoint(true, 2012062500.01);
upgrade_main_savepoint(true, 2012062500.02);
}


// Moodle v2.3.0 release upgrade line
// Put any upgrade step following this


return true;
}
2 changes: 1 addition & 1 deletion version.php
Expand Up @@ -30,7 +30,7 @@
defined('MOODLE_INTERNAL') || die();


$version = 2012062500.01; // YYYYMMDD = weekly release date of this DEV branch
$version = 2012062500.02; // YYYYMMDD = weekly release date of this DEV branch
// RR = release increments - 00 in DEV branches
// .XX = incremental changes

Expand Down

0 comments on commit 44cb29a

Please sign in to comment.