From 41daad7675532236aee4d34b73fc285c91f55719 Mon Sep 17 00:00:00 2001 From: danmarsden Date: Wed, 24 Oct 2007 21:27:26 +0000 Subject: [PATCH] MDL-11397 bug with IE 6 not displaying anonymous results correctly. - also fix for XHTML Strict. --- mod/choice/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/choice/lib.php b/mod/choice/lib.php index 3925714c77..5c36cee124 100644 --- a/mod/choice/lib.php +++ b/mod/choice/lib.php @@ -226,7 +226,7 @@ function choice_show_form($choice, $user, $cm) { echo ""; if ($choice->allowupdate && $aaa = get_record('choice_answers', 'choiceid', $choice->id, 'userid', $user->id)) { - echo "
".get_string("removemychoice","choice").""; + echo "
".get_string("removemychoice","choice").""; } } else { @@ -531,7 +531,7 @@ function choice_show_results($choice, $course, $cm, $forcepublish='') { if ($maxcolumn) { $height = $COLUMN_HEIGHT * ((float)$column[$optionid] / (float)$maxcolumn); } - echo ""; + echo ""; echo "\"\""; echo ""; $count++; -- 2.39.5