diff --git a/main/exercice/exercice_submit.php b/main/exercice/exercice_submit.php
index 51f030916d..bf89e4863d 100644
--- a/main/exercice/exercice_submit.php
+++ b/main/exercice/exercice_submit.php
@@ -1,5 +1,5 @@
" . get_lang('Cancel') . "
//-->
";
+ echo '
';
$submit_btn = "
';
if ($_configuration['live_exercise_tracking'] == true && $exerciseFeedbackType != 1) {
//if($questionNum < 2){
if ($table_recorded_not_exist) {
diff --git a/main/exercice/exercise.lib.php b/main/exercice/exercise.lib.php
index 1a3a720b44..c9090781c0 100644
--- a/main/exercice/exercise.lib.php
+++ b/main/exercice/exercise.lib.php
@@ -1,4 +1,4 @@
-
-* @version $Id: exercise.lib.php 20860 2009-05-20 00:09:00Z cvargas1 $
+* @version $Id: exercise.lib.php 20913 2009-05-20 16:48:25Z aportugal $
*/
/**
@@ -205,11 +205,11 @@ function showQuestion($questionId, $onlyAnswers=false, $origin=false,$current_it
} elseif($answerType == MULTIPLE_ANSWER) {
// multiple answers
- $s.="
-
+ $s.="
+
- ";
+ ";
$answer = api_parse_tex($answer);
$s.=$answer;
$s.=" | ";
|