Show only status for the selected student answer BT#16256

ofaj
Julio Montoya 6 years ago committed by Nicolas Ducoulombier
parent ed2015d831
commit 43d96a1c8b
  1. 6
      main/inc/lib/exercise_show_functions.lib.php

@ -413,7 +413,11 @@ class ExerciseShowFunctions
$status = Display::label(get_lang('Correct'), 'success');
}
echo '<td width="20%">';
echo $status;
// Show only status for the selected student answer BT#16256
if ($studentChoice) {
echo $status;
}
echo '</td>';
}

Loading…
Cancel
Save