Skip to content

Commit

Permalink
MDL-34607 files: post integration version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hemelryk committed Sep 24, 2012
1 parent 8a7cc01 commit 6b69bf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/db/upgrade.php
Expand Up @@ -959,14 +959,14 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2012062501.14); upgrade_main_savepoint(true, 2012062501.14);
} }


if ($oldversion < 2012062502.02) { if ($oldversion < 2012062502.03) {
// Some folders still have a sortorder set, which is used for main files but is not // Some folders still have a sortorder set, which is used for main files but is not
// supported by the folder resource. We reset the value here. // supported by the folder resource. We reset the value here.
$sql = 'UPDATE {files} SET sortorder = ? WHERE component = ? AND filearea = ? AND sortorder <> ?'; $sql = 'UPDATE {files} SET sortorder = ? WHERE component = ? AND filearea = ? AND sortorder <> ?';
$DB->execute($sql, array(0, 'mod_folder', 'content', 0)); $DB->execute($sql, array(0, 'mod_folder', 'content', 0));


// Main savepoint reached. // Main savepoint reached.
upgrade_main_savepoint(true, 2012062502.02); upgrade_main_savepoint(true, 2012062502.03);
} }


return true; return true;
Expand Down
2 changes: 1 addition & 1 deletion version.php
Expand Up @@ -30,7 +30,7 @@
defined('MOODLE_INTERNAL') || die(); defined('MOODLE_INTERNAL') || die();




$version = 2012062502.02; // YYYYMMDD = weekly release date of this DEV branch $version = 2012062502.03; // YYYYMMDD = weekly release date of this DEV branch
// RR = release increments - 00 in DEV branches // RR = release increments - 00 in DEV branches
// .XX = incremental changes // .XX = incremental changes


Expand Down

0 comments on commit 6b69bf4

Please sign in to comment.