MDL-15229

Fixed incorrect options array for DB call
This commit is contained in:
thepurpleblob 2008-06-13 10:52:58 +00:00
parent f659219406
commit e5d7d1dc02

View File

@ -316,7 +316,7 @@ class qformat_default {
} }
// Give the question a unique version stamp determined by question_hash() // Give the question a unique version stamp determined by question_hash()
$DB->set_field('question', 'version', question_hash($question), array('id', $question->id)); $DB->set_field('question', 'version', question_hash($question), array('id'=>$question->id));
} }
return true; return true;
} }