mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
Merge branch 'MDL-32791' of git://github.com/timhunt/moodle
This commit is contained in:
commit
66146ffcf7
@ -330,6 +330,16 @@ function xmldb_quiz_upgrade($oldversion) {
|
||||
// Moodle v2.3.0 release upgrade line
|
||||
// Put any upgrade step following this
|
||||
|
||||
if ($oldversion < 2012061702) {
|
||||
|
||||
// MDL-32791 somebody reported having nonsense rows in their
|
||||
// quiz_question_instances which caused various problems. These rows
|
||||
// are meaningless, hence this upgrade step to clean them up.
|
||||
$DB->delete_records('quiz_question_instances', array('question' => 0));
|
||||
|
||||
// Quiz savepoint reached.
|
||||
upgrade_mod_savepoint(true, 2012061702, 'quiz');
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$module->version = 2012061701; // The current module version (Date: YYYYMMDDXX).
|
||||
$module->version = 2012061702; // The current module version (Date: YYYYMMDDXX).
|
||||
$module->requires = 2012061700; // Requires this Moodle version.
|
||||
$module->component = 'mod_quiz'; // Full name of the plugin (used for diagnostics).
|
||||
$module->cron = 60;
|
||||
|
Loading…
x
Reference in New Issue
Block a user