From: pichetp Date: Wed, 7 Mar 2007 19:44:55 +0000 (+0000) Subject: merge from 18 (adding null) MDL-8806 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0f22fa41570aa0e330335b35225ec8d27ac797bd;p=moodle.git merge from 18 (adding null) MDL-8806 --- diff --git a/question/type/match/edit_match_form.php b/question/type/match/edit_match_form.php index f29b349564..9e72f5dd54 100644 --- a/question/type/match/edit_match_form.php +++ b/question/type/match/edit_match_form.php @@ -18,7 +18,7 @@ class question_edit_match_form extends question_edit_form { * @param object $mform the form being built. */ function definition_inner(&$mform) { - $mform->addElement('advcheckbox', 'shuffleanswers', get_string('shuffle', 'quiz'), null, array(0,1)); + $mform->addElement('advcheckbox', 'shuffleanswers', get_string('shuffle', 'quiz'), null, null, array(0,1)); $mform->setHelpButton('shuffleanswers', array('matchshuffle', get_string('shuffle','quiz'), 'quiz')); $mform->setDefault('shuffleanswers', 1);