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
15257dd1
Commit
15257dd1
authored
Jan 14, 2011
by
Sam Hemelryk
Browse files
lib-db MDL-25790 Added code to drop adodb_logsql if it exists
parent
43c98457
Changes
2
Hide whitespace changes
Inline
Side-by-side
lib/db/upgrade.php
View file @
15257dd1
...
...
@@ -5926,6 +5926,17 @@ WHERE gradeitemid IS NOT NULL AND grademax IS NOT NULL");
upgrade_main_savepoint
(
true
,
2011011413
);
}
if
(
$oldversion
<
2011011414
)
{
// Drop the adodb_logsql table if it exists... it was never actually used anyway.
$table
=
new
xmldb_table
(
'adodb_logsql'
);
if
(
$dbman
->
table_exists
(
$table
))
{
$dbman
->
drop_table
(
$table
);
}
upgrade_main_savepoint
(
true
,
2011011414
);
}
return
true
;
}
...
...
version.php
View file @
15257dd1
...
...
@@ -29,7 +29,7 @@
defined
(
'MOODLE_INTERNAL'
)
||
die
();
$version
=
201101141
3
;
// YYYYMMDD = date of the last version bump
$version
=
201101141
4
;
// YYYYMMDD = date of the last version bump
// XX = daily increments
$release
=
'2.0.1+ (Build: 20110112)'
;
// Human-friendly version name
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