Merge branch 'MDL-30739' of git://github.com/timhunt/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2011-12-20 02:21:00 +01:00
commit 80472947dc

View File

@ -70,12 +70,14 @@ function xmldb_qtype_numerical_upgrade($oldversion) {
// Set a better default for questions without units.
$DB->execute('
UPDATE {question_numerical_options} qno
UPDATE {question_numerical_options}
SET showunits = 3
WHERE NOT EXISTS (
SELECT 1
FROM {question_numerical_units} qnu
WHERE qnu.question = qno.question)');
SELECT 1
FROM {question_numerical_units}
WHERE {question_numerical_units}.question =
{question_numerical_options}.question
)');
upgrade_plugin_savepoint(true, 2009100100, 'qtype', 'numerical');
}