From 9f622ce7d8c3912ad1c9f96d2c8f670aa48e5a42 Mon Sep 17 00:00:00 2001 From: Tim Hunt Date: Fri, 11 Mar 2011 18:28:40 +0000 Subject: [PATCH] MDL-20636 Fix syntax error in question/format/xhtml/format.php --- question/format/xhtml/format.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/question/format/xhtml/format.php b/question/format/xhtml/format.php index 95a4d0aed7afe..74f4a57b5fed1 100644 --- a/question/format/xhtml/format.php +++ b/question/format/xhtml/format.php @@ -69,7 +69,7 @@ function writequestion($question) { // Format and add the question text $expout .= '

' . format_text($question->questiontext, - $question->questiontextformat); . "

\n"; + $question->questiontextformat) . "

\n"; // selection depends on question type switch($question->qtype) {