]> git.mjollnir.org Git - moodle.git/commitdiff
Updated versions only
authormoodler <moodler>
Mon, 3 Mar 2003 17:48:39 +0000 (17:48 +0000)
committermoodler <moodler>
Mon, 3 Mar 2003 17:48:39 +0000 (17:48 +0000)
mod/quiz/db/mysql.php
mod/quiz/db/postgres7.php
mod/quiz/version.php

index 3fbc7fc9f68219916b08fc7f107f65239f0bfaf1..47da10ea56a583a0b66f2a94ca8c4f87f12dcef0 100644 (file)
@@ -50,7 +50,7 @@ function quiz_upgrade($oldversion) {
                           );");
     }
 
-    if ($oldversion < 2003030302) {
+    if ($oldversion < 2003030303) {
         table_column("quiz_questions", "", "defaultgrade", "INTEGER", "6", "UNSIGNED", "1", "NOT NULL", "image");
     }
 
index 1e424afb79887aab71a222c1cd3fe77029b74db5..7a0bafd2651700d500e1f34c9bd328114fc49d89 100644 (file)
@@ -23,7 +23,7 @@ function quiz_upgrade($oldversion) {
                                   choose integer NOT NULL default '4',
                               );");
     }
-    if ($oldversion < 2003030302) {
+    if ($oldversion < 2003030303) {
         table_column("quiz_questions", "", "defaultgrade", "INTEGER", "6", "UNSIGNED", "1", "NOT NULL", "image");
     }
 
index d5ea2d9938c0ee6e68982223fcf300088800d2c8..63a883b76a3d75cd87d34692fdbc691cc8838bcf 100644 (file)
@@ -5,7 +5,7 @@
 //  This fragment is called by moodle_needs_upgrading() and /admin/index.php
 ////////////////////////////////////////////////////////////////////////////////
 
-$module->version  = 2003030302;   // The (date) version of this module
+$module->version  = 2003030303;   // The (date) version of this module
 $module->cron     = 0;            // How often should cron check this module (seconds)?
 
 ?>