Skip to content

Commit

Permalink
MDL-53542 tool_lp: Fixing missed upgrade step
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederic Massart committed Apr 18, 2016
1 parent eb0d340 commit cf4c3ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions admin/tool/lp/db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ function xmldb_tool_lp_upgrade($oldversion) {
upgrade_plugin_savepoint(true, 2016020917, 'tool', 'lp');
}

if ($oldversion < 2016020919) {
if ($oldversion < 2016020923) {

// Define table tool_lp_coursecompsettings to be created.
$table = new xmldb_table('tool_lp_coursecompsettings');
Expand All @@ -855,7 +855,7 @@ function xmldb_tool_lp_upgrade($oldversion) {
}

// Lp savepoint reached.
upgrade_plugin_savepoint(true, 2016020919, 'tool', 'lp');
upgrade_plugin_savepoint(true, 2016020923, 'tool', 'lp');
}


Expand Down
2 changes: 1 addition & 1 deletion admin/tool/lp/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
defined('MOODLE_INTERNAL') || die();


$plugin->version = 2016020922; // The current plugin version (Date: YYYYMMDDXX).
$plugin->version = 2016020923; // The current plugin version (Date: YYYYMMDDXX).
$plugin->requires = 2014110400; // Requires this Moodle version.
$plugin->component = 'tool_lp'; // Full name of the plugin (used for diagnostics).

0 comments on commit cf4c3ea

Please sign in to comment.