mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 08:22:07 +02:00
MDL-13766 rerunning latest repo upgrade block, the 2008082600 was not correct in upgrade.php, should have been 2008082601
This commit is contained in:
parent
c6dc4709c6
commit
8f3f6cc3fa
@ -652,7 +652,7 @@ function xmldb_main_upgrade($oldversion) {
|
||||
|
||||
upgrade_main_savepoint($result, 2008081900);
|
||||
}
|
||||
if ($result && $oldversion < 2008082600) {
|
||||
if ($result && $oldversion < 2008082602) {
|
||||
|
||||
/// Define table repository to be dropped
|
||||
$table = new xmldb_table('repository');
|
||||
@ -718,7 +718,7 @@ function xmldb_main_upgrade($oldversion) {
|
||||
}
|
||||
|
||||
/// Main savepoint reached
|
||||
upgrade_main_savepoint($result, 2008082600);
|
||||
upgrade_main_savepoint($result, 2008082602);
|
||||
}
|
||||
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
// This is compared against the values stored in the database to determine
|
||||
// whether upgrades should be performed (see lib/db/*.php)
|
||||
|
||||
$version = 2008082601; // YYYYMMDD = date of the last version bump
|
||||
$version = 2008082602; // YYYYMMDD = date of the last version bump
|
||||
// XX = daily increments
|
||||
|
||||
$release = '2.0 dev (Build: 20080826)'; // Human-friendly version name
|
||||
|
Loading…
x
Reference in New Issue
Block a user