MDL-40103 Bump version & whitespace/punctuation

This commit is contained in:
Eloy Lafuente (stronk7) 2013-06-18 01:14:40 +02:00
parent 96c90fab6a
commit 672bee2d23
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}
}

View File

@ -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