Skip to content

Commit

Permalink
MDL-44118 question engine: Fix bad merge conflict resolution (again)
Browse files Browse the repository at this point in the history
This time for sure (sorry).
  • Loading branch information
Damyon Wiese committed Feb 19, 2014
1 parent 0d7e83c commit d4e5757
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3055,7 +3055,7 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2014021900.02);
}

if ($oldversion < 2014021900.00) {
if ($oldversion < 2014021900.03) {

// Define table question_sessions to be dropped.
$table = new xmldb_table('question_sessions');
Expand All @@ -3066,7 +3066,7 @@ function xmldb_main_upgrade($oldversion) {
}

// Main savepoint reached.
upgrade_main_savepoint(true, 2014021900.00);
upgrade_main_savepoint(true, 2014021900.03);
}

return true;
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

defined('MOODLE_INTERNAL') || die();

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

Expand Down

0 comments on commit d4e5757

Please sign in to comment.