update version files for 3.10.2 release

This commit is contained in:
Lai Wei 2021-06-30 15:58:14 +01:00
Родитель 45d98974a7
Коммит 2b784570a4
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -222,7 +222,7 @@ function xmldb_auth_oidc_upgrade($oldversion) {
upgrade_plugin_savepoint(true, 2020110901, 'auth', 'oidc');
}
if ($oldversion < 2020110902) {
if ($oldversion < 2020110903) {
// Part 1: add index to auth_oidc_token table.
$table = new xmldb_table('auth_oidc_token');
@ -260,7 +260,7 @@ function xmldb_auth_oidc_upgrade($oldversion) {
}
// Oidc savepoint reached.
upgrade_plugin_savepoint(true, 2020110902, 'auth', 'oidc');
upgrade_plugin_savepoint(true, 2020110903, 'auth', 'oidc');
}
return $result;

Просмотреть файл

@ -23,7 +23,7 @@
defined('MOODLE_INTERNAL') || die();
$plugin->version = 2020110902;
$plugin->version = 2020110903;
$plugin->requires = 2020110900;
$plugin->release = '3.10.2';
$plugin->component = 'auth_oidc';