fix for version upgrade mis-match with earlier versions.
authorDan Marsden <dan@danmarsden.com>
Wed, 19 Nov 2014 21:41:26 +0000 (10:41 +1300)
committerDan Marsden <dan@danmarsden.com>
Wed, 19 Nov 2014 21:41:26 +0000 (10:41 +1300)
db/upgrade.php
version.php

index fb264f7..12a0b95 100644 (file)
@@ -34,7 +34,7 @@ function xmldb_attendance_upgrade($oldversion=0) {
 
     $result = true;
 
-    if ($oldversion < 2014072101) {
+    if ($oldversion < 2014112000) {
         $table = new xmldb_table('attendance_sessions');
 
         $field = new xmldb_field('studentscanmark');
@@ -43,10 +43,10 @@ function xmldb_attendance_upgrade($oldversion=0) {
             $dbman->add_field($table, $field);
         }
         
-        upgrade_mod_savepoint($result, 2014072101, 'attendance');
+        upgrade_mod_savepoint($result, 2014112000, 'attendance');
     }
 
-    if ($oldversion < 2014072102) {
+    if ($oldversion < 2014112001) {
         // Replace values that reference old module "attforblock" to "attendance".
         $sql = "UPDATE {grade_items}
                    SET itemmodule = 'attendance'
@@ -82,7 +82,7 @@ function xmldb_attendance_upgrade($oldversion=0) {
         // Delete old capabilities.
         $DB->delete_records_select('capabilities', 'component = ?', array('mod_attforblock'));
 
-        upgrade_plugin_savepoint($result, 2014072102, 'mod', 'attendance');
+        upgrade_plugin_savepoint($result, 2014112001, 'mod', 'attendance');
     }
 
     return $result;
index 2ef76ce..427a816 100644 (file)
@@ -22,7 +22,7 @@
  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
-$plugin->version  = 2014100900;
+$plugin->version  = 2014112001;
 $plugin->requires = 2014042900;
 $plugin->release = '2.7.1';
 $plugin->maturity  = MATURITY_STABLE;