From b3efa7078d6be5b167e7a5a3d2c6092c05252ece Mon Sep 17 00:00:00 2001 From: tjhunt Date: Tue, 19 Aug 2008 02:36:12 +0000 Subject: [PATCH] MDL-14643 - Revert the hugely umpopular change from MDL-10841. --- question/type/multichoice/questiontype.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/question/type/multichoice/questiontype.php b/question/type/multichoice/questiontype.php index 701ba4b481..02d48e29b8 100644 --- a/question/type/multichoice/questiontype.php +++ b/question/type/multichoice/questiontype.php @@ -326,7 +326,7 @@ class question_multichoice_qtype extends default_questiontype { format_text($answer->answer, FORMAT_MOODLE, $formatoptions, $cmoptions->course); // Print feedback if feedback is on - if (($options->feedback || $options->correct_responses) && ($checked || $options->readonly)) { + if (($options->feedback || $options->correct_responses) && $checked) { $a->feedback = format_text($answer->feedback, true, $formatoptions, $cmoptions->course); } else { $a->feedback = ''; -- 2.39.5