From 91bfeb65ea73036beb15f0ec9c0d87b8903e5bbf Mon Sep 17 00:00:00 2001 From: mark-nielsen Date: Fri, 25 Aug 2006 22:51:24 +0000 Subject: [PATCH] MDL-6323 - Fixed - changed feedback to response --- mod/lesson/locallib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/lesson/locallib.php b/mod/lesson/locallib.php index f4dbf8fb6b2..b7833ff546c 100644 --- a/mod/lesson/locallib.php +++ b/mod/lesson/locallib.php @@ -245,7 +245,7 @@ function lesson_save_question_options($question) { $answer->timecreated = $timenow; $answer->grade = $question->fraction[$key] * 100; $answer->answer = $dataanswer; - $answer->feedback = $question->feedback[$key]; + $answer->response = $question->feedback[$key]; if (!$answer->id = insert_record("lesson_answers", $answer)) { $result->error = "Could not insert shortanswer quiz answer!"; return $result;