mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 10:56:56 +02:00
Merge branch 'MDL-79520-fix' of https://github.com/sarjona/moodle into main
This commit is contained in:
commit
d370f9b134
2 changed files with 3 additions and 3 deletions
|
@ -1004,7 +1004,7 @@ function xmldb_main_upgrade($oldversion) {
|
||||||
upgrade_main_savepoint(true, 2024021500.01);
|
upgrade_main_savepoint(true, 2024021500.01);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($oldversion < 2024021500.01) {
|
if ($oldversion < 2024021500.02) {
|
||||||
// A [name => url] map of new OIDC endpoints to be updated/created.
|
// A [name => url] map of new OIDC endpoints to be updated/created.
|
||||||
$endpointuris = [
|
$endpointuris = [
|
||||||
'authorization_endpoint' => 'https://clever.com/oauth/authorize',
|
'authorization_endpoint' => 'https://clever.com/oauth/authorize',
|
||||||
|
@ -1083,7 +1083,7 @@ function xmldb_main_upgrade($oldversion) {
|
||||||
$DB->update_record('oauth2_issuer', $cleverservice);
|
$DB->update_record('oauth2_issuer', $cleverservice);
|
||||||
}
|
}
|
||||||
|
|
||||||
upgrade_main_savepoint(true, 2024021500.01);
|
upgrade_main_savepoint(true, 2024021500.02);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
$version = 2024021500.01; // YYYYMMDD = weekly release date of this DEV branch.
|
$version = 2024021500.02; // YYYYMMDD = weekly release date of this DEV branch.
|
||||||
// RR = release increments - 00 in DEV branches.
|
// RR = release increments - 00 in DEV branches.
|
||||||
// .XX = incremental changes.
|
// .XX = incremental changes.
|
||||||
$release = '4.4dev (Build: 20240215)'; // Human-friendly version name
|
$release = '4.4dev (Build: 20240215)'; // Human-friendly version name
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue