From 5bc4ff92d9de4348b01dee2b7fc85a02e4382b93 Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 26 Jan 2007 06:50:34 +0000 Subject: [PATCH] Fixed a pass-by-reference notice --- question/question2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5