From b119a40f16c3cd88c715a926005184ed2e100906 Mon Sep 17 00:00:00 2001 From: pichetp Date: Sat, 26 Jan 2008 15:21:44 +0000 Subject: [PATCH] MDL-3274 further trimming --- question/type/multianswer/questiontype.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/question/type/multianswer/questiontype.php b/question/type/multianswer/questiontype.php index 6cb0c61aa5..eeaab6bd67 100644 --- a/question/type/multianswer/questiontype.php +++ b/question/type/multianswer/questiontype.php @@ -326,7 +326,7 @@ class embedded_cloze_qtype extends default_questiontype { } $size = $size + rand(0,$size*0.15); $size > 60 ? $size = 60 : $size = $size; - $styleinfo = "size=\".$size\""; + $styleinfo = "size=\"$size\""; /** * Uncomment the following lines if you want to limit for small sizes. * Results may vary with browsers see MDL-3274 @@ -346,8 +346,8 @@ class embedded_cloze_qtype extends default_questiontype { } */ - echo " "; + echo " "; if (!empty($feedback) && !empty($USER->screenreader)) { echo "pixpath/i/feedback.gif\" alt=\"$feedback\" />"; } -- 2.39.5