diff --git a/question/type/questiontype.php b/question/type/questiontype.php index 3ff567597d6..9807d7351f0 100644 --- a/question/type/questiontype.php +++ b/question/type/questiontype.php @@ -686,10 +686,8 @@ class default_questiontype { */ // ULPGC ecastro function get_actual_response($question, $state) { - // change length to truncate responses here if you want - $lmax = 40; if (!empty($state->responses)) { - $responses[] = shorten_text(stripslashes($state->responses['']), 45); + $responses[] = stripslashes($state->responses['']); } else { $responses[] = ''; }