Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
integration
prechecker
Commits
e968cf1d
Commit
e968cf1d
authored
Nov 21, 2017
by
David Monllaó
Browse files
MDL-59512 version: Following 2 digits scheme
parent
eee87c8a
Changes
2
Hide whitespace changes
Inline
Side-by-side
lib/db/upgrade.php
View file @
e968cf1d
...
...
@@ -2811,7 +2811,7 @@ function xmldb_main_upgrade($oldversion) {
// Automatically generated Moodle v3.4.0 release upgrade line.
// Put any upgrade step following this.
if
(
$oldversion
<
2017111300.0
11
)
{
if
(
$oldversion
<
2017111300.0
2
)
{
// Define field basicauth to be added to oauth2_issuer.
$table
=
new
xmldb_table
(
'oauth2_issuer'
);
...
...
@@ -2823,7 +2823,7 @@ function xmldb_main_upgrade($oldversion) {
}
// Main savepoint reached.
upgrade_main_savepoint
(
true
,
2017111300.0
11
);
upgrade_main_savepoint
(
true
,
2017111300.0
2
);
}
return
true
;
...
...
version.php
View file @
e968cf1d
...
...
@@ -29,7 +29,7 @@
defined
(
'MOODLE_INTERNAL'
)
||
die
();
$version
=
2017111300.0
11
;
// YYYYMMDD = weekly release date of this DEV branch.
$version
=
2017111300.0
2
;
// YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment