From: moodler Date: Fri, 26 Jan 2007 06:50:34 +0000 (+0000) Subject: Fixed a pass-by-reference notice X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=5bc4ff92d9de4348b01dee2b7fc85a02e4382b93;p=moodle.git Fixed a pass-by-reference notice --- diff --git a/question/question2.php b/question/question2.php index 8004e1be25..8dd7bb4364 100644 --- a/question/question2.php +++ b/question/question2.php @@ -124,7 +124,7 @@ if ($mform->is_cancelled()){ // Display a heading, question editing form and possibly some extra content needed for // for this question type. - $QTYPES[$question->qtype]->display_question_editing_page(&$mform, $question, $wizardnow); + $QTYPES[$question->qtype]->display_question_editing_page($mform, $question, $wizardnow); print_footer($COURSE); }