From 19e559e4bcb4eba09b1ca45f5093052d750a9351 Mon Sep 17 00:00:00 2001 From: danmarsden Date: Mon, 22 Oct 2007 21:49:58 +0000 Subject: [PATCH] Fix for MDL-9666 totals don't appear when full names are shown. --- mod/choice/lib.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mod/choice/lib.php b/mod/choice/lib.php index db3e505d4c..3925714c77 100644 --- a/mod/choice/lib.php +++ b/mod/choice/lib.php @@ -454,6 +454,8 @@ function choice_show_results($choice, $course, $cm, $forcepublish='') { echo get_string("limit", "choice").":"; $choice_option = get_record("choice_options", "id", $optionid); echo $choice_option->maxanswers; + } else { + echo $columncount[$optionid]; } echo ""; $count++; -- 2.39.5