Browse Source

bump to fix bad version upgrade - thanks to Eric for the report!

MOODLE_24-26_STABLE
Dan Marsden 10 years ago
parent
commit
17b751bc0c
  1. 4
      db/upgrade.php
  2. 2
      version.php

4
db/upgrade.php

@ -73,7 +73,7 @@ function xmldb_attendance_upgrade($oldversion=0) {
upgrade_plugin_savepoint($result, 2013082902, 'mod', 'attendance'); upgrade_plugin_savepoint($result, 2013082902, 'mod', 'attendance');
} }
if ($oldversion < 2014022802) { if ($oldversion < 2014022803) {
$table = new xmldb_table('attendance_sessions'); $table = new xmldb_table('attendance_sessions');
$field = new xmldb_field('studentscanmark'); $field = new xmldb_field('studentscanmark');
@ -82,7 +82,7 @@ function xmldb_attendance_upgrade($oldversion=0) {
$dbman->add_field($table, $field); $dbman->add_field($table, $field);
} }
upgrade_mod_savepoint($result, 2014022802, 'attendance'); upgrade_mod_savepoint($result, 2014022803, 'attendance');
} }
return $result; return $result;

2
version.php

@ -22,7 +22,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/ */
$module->version = 2014022802; $module->version = 2014022803;
$module->requires = 2013040500; $module->requires = 2013040500;
$module->release = '2.6.2'; $module->release = '2.6.2';
$module->maturity = MATURITY_STABLE; $module->maturity = MATURITY_STABLE;

Loading…
Cancel
Save