diff --git a/filter/mathjaxloader/db/upgrade.php b/filter/mathjaxloader/db/upgrade.php index 6d5ad100b69ed..336208c53b44a 100644 --- a/filter/mathjaxloader/db/upgrade.php +++ b/filter/mathjaxloader/db/upgrade.php @@ -114,7 +114,7 @@ function xmldb_filter_mathjaxloader_upgrade($oldversion) { // Moodle v3.1.0 release upgrade line. // Put any upgrade step following this. - if ($oldversion < 2015111601) { + if ($oldversion < 2016032200) { $httpurl = get_config('filter_mathjaxloader', 'httpurl'); // Don't change the config if it has been manually changed to something besides the default setting value. @@ -128,7 +128,7 @@ function xmldb_filter_mathjaxloader_upgrade($oldversion) { set_config('httpsurl', 'https://cdn.mathjax.org/mathjax/2.6-latest/MathJax.js', 'filter_mathjaxloader'); } - upgrade_plugin_savepoint(true, 2015111601, 'filter', 'mathjaxloader'); + upgrade_plugin_savepoint(true, 2016032200, 'filter', 'mathjaxloader'); } return true; diff --git a/filter/mathjaxloader/version.php b/filter/mathjaxloader/version.php index 08fd2ba08dcf5..5a3d87d6adef6 100644 --- a/filter/mathjaxloader/version.php +++ b/filter/mathjaxloader/version.php @@ -24,6 +24,6 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2015111601; +$plugin->version = 2016032200; $plugin->requires = 2015111000; // Requires this Moodle version. $plugin->component= 'filter_mathjaxloader';