From: danmarsden Date: Mon, 22 Oct 2007 21:49:58 +0000 (+0000) Subject: Fix for MDL-9666 totals don't appear when full names are shown. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=19e559e4bcb4eba09b1ca45f5093052d750a9351;p=moodle.git Fix for MDL-9666 totals don't appear when full names are shown. --- 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++;