mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-40103 Bump version & whitespace/punctuation
This commit is contained in:
parent
96c90fab6a
commit
672bee2d23
@ -2174,14 +2174,14 @@ function xmldb_main_upgrade($oldversion) {
|
||||
|
||||
if ($oldversion < 2013061700.00) {
|
||||
// MDL-40103: Remove unused template tables from the database.
|
||||
// These are now created inline with xmldb_table
|
||||
// These are now created inline with xmldb_table.
|
||||
|
||||
$tablestocleanup = array('temp_enroled_template','temp_log_template','backup_files_template','backup_ids_template');
|
||||
$dbman = $DB->get_manager();
|
||||
|
||||
foreach ($tablestocleanup as $table) {
|
||||
$xmltable = new xmldb_table($table);
|
||||
if ($dbman->table_exists($xmltable)) {
|
||||
if ($dbman->table_exists($xmltable)) {
|
||||
$dbman->drop_table($xmltable);
|
||||
}
|
||||
}
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2013061400.01; // YYYYMMDD = weekly release date of this DEV branch
|
||||
$version = 2013061700.00; // YYYYMMDD = weekly release date of this DEV branch
|
||||
// RR = release increments - 00 in DEV branches
|
||||
// .XX = incremental changes
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user