From: moodler Date: Mon, 3 Mar 2003 17:48:39 +0000 (+0000) Subject: Updated versions only X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0d1a40f00a6d8d2fc9f004481150798847e3725b;p=moodle.git Updated versions only --- diff --git a/mod/quiz/db/mysql.php b/mod/quiz/db/mysql.php index 3fbc7fc9f6..47da10ea56 100644 --- a/mod/quiz/db/mysql.php +++ b/mod/quiz/db/mysql.php @@ -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"); } diff --git a/mod/quiz/db/postgres7.php b/mod/quiz/db/postgres7.php index 1e424afb79..7a0bafd265 100644 --- a/mod/quiz/db/postgres7.php +++ b/mod/quiz/db/postgres7.php @@ -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"); } diff --git a/mod/quiz/version.php b/mod/quiz/version.php index d5ea2d9938..63a883b76a 100644 --- a/mod/quiz/version.php +++ b/mod/quiz/version.php @@ -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)? ?>