Skip to content
GitLab
Menu
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
89b4ffe6
Commit
89b4ffe6
authored
Jan 18, 2011
by
sam marshall
Browse files
completion MDL-25929 Added upgrade change to remove unused setting
parent
b64a827c
Changes
2
Hide whitespace changes
Inline
Side-by-side
lib/db/upgrade.php
View file @
89b4ffe6
...
...
@@ -5512,6 +5512,14 @@ WHERE gradeitemid IS NOT NULL AND grademax IS NOT NULL");
upgrade_main_savepoint
(
true
,
2010121401
);
}
if
(
$oldversion
<
2011011800
)
{
// Clean up the old progress tracked roles setting, no longer used (replaced by enrolment)
unset_config
(
'progresstrackedroles'
);
upgrade_main_savepoint
(
true
,
2011011800
);
}
return
true
;
}
...
...
version.php
View file @
89b4ffe6
...
...
@@ -29,7 +29,7 @@
defined
(
'MOODLE_INTERNAL'
)
||
die
();
$version
=
20101
229
00
;
// YYYYMMDD = date of the last version bump
$version
=
201
1
01
18
00
;
// YYYYMMDD = date of the last version bump
// XX = daily increments
$release
=
'2.0.1+ (Build: 20110105)'
;
// Human-friendly version name
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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