From 8673a98d1db81b86606ccf67ba9476a12284b780 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Fri, 8 Mar 2013 00:27:01 +0100 Subject: [PATCH] MDL-38378 Take rid of harcoded db prefix and bump. --- lib/db/upgrade.php | 4 ++-- version.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/db/upgrade.php b/lib/db/upgrade.php index 6b1b170ce85..e7039580a15 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -1695,7 +1695,7 @@ function xmldb_main_upgrade($oldversion) { // This is checking to see if the site has been running a specific version with a bug in it // because this upgrade step is slow and is only needed if the site has been running with the affected versions. - if ($oldversion >= 2012062504.08 && $oldversion < 2012062504.11) { + if ($oldversion >= 2012062504.08 && $oldversion < 2012062504.13) { // Retrieve the list of course_sections as a recordset to save memory. // This is to fix a regression caused by MDL-37939. // In this case the upgrade step is fixing records where: @@ -1708,7 +1708,7 @@ function xmldb_main_upgrade($oldversion) { $sequenceconcat = $DB->sql_concat("','", 's.sequence', "','"); $moduleconcat = $DB->sql_concat("'%,'", 'cm.id', "',%'"); $sql = 'SELECT s2.id, s2.course, s2.sequence - FROM mdl_course_sections s2 + FROM {course_sections} s2 JOIN( SELECT DISTINCT s.id FROM diff --git a/version.php b/version.php index 88a1b25ce5e..64f42bb1c14 100644 --- a/version.php +++ b/version.php @@ -29,11 +29,11 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2013030700.00; // YYYYMMDD = weekly release date of this DEV branch +$version = 2013030800.00; // YYYYMMDD = weekly release date of this DEV branch // RR = release increments - 00 in DEV branches // .XX = incremental changes -$release = '2.5dev (Build: 20130307)'; // Human-friendly version name +$release = '2.5dev (Build: 20130308)'; // Human-friendly version name $branch = '25'; // this version's branch $maturity = MATURITY_ALPHA; // this version's maturity level -- 2.43.0