Now user reports support filterall.

Bug 2930 fixed too.
(http://moodle.org/bugs/bug.php?op=show&bugid=2930)
This commit is contained in:
stronk7
2005-04-14 22:37:43 +00:00
parent 6a07a14d13
commit 7cfc54b918
+3 -3
View File
@@ -28,7 +28,7 @@ $CHOICE_DISPLAY = array (CHOICE_DISPLAY_HORIZONTAL => get_string('displayhoriz
function choice_user_outline($course, $user, $mod, $choice) {
if ($answer = get_record('choice_answers', 'choiceid', $choice->id, 'userid', $user->id)) {
$result->info = "'".choice_get_option_text($choice, $answer->optionid)."'";
$result->info = "'".format_string(choice_get_option_text($choice, $answer->optionid))."'";
$result->time = $answer->timemodified;
return $result;
}
@@ -38,9 +38,9 @@ function choice_user_outline($course, $user, $mod, $choice) {
function choice_user_complete($course, $user, $mod, $choice) {
if ($answer = get_record('choice_answers', "choiceid", $choice->id, "userid", $user->id)) {
$result->info = "'".choice_get_option_text($choice, $answer->optionid)."'";
$result->info = "'".format_string(choice_get_option_text($choice, $answer->optionid))."'";
$result->time = $answer->timemodified;
echo get_string("answered", "choice").": $result->info , last updated ".userdate($result->time);
echo get_string("answered", "choice").": $result->info. ".get_string("updated", '', userdate($result->time));
} else {
print_string("notanswered", "choice");
}