From c7cd8a0f068908bb6d8f7841ae700f0855d80ece Mon Sep 17 00:00:00 2001 From: Julian Prud'homme Date: Thu, 7 Aug 2008 15:47:39 +0200 Subject: [PATCH] [svn r15944] put the two options in a hidden div --- main/exercice/exercise.class.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/main/exercice/exercise.class.php b/main/exercice/exercise.class.php index 92601d16a7..d048b90bdd 100644 --- a/main/exercice/exercise.class.php +++ b/main/exercice/exercise.class.php @@ -25,7 +25,7 @@ * Exercise class: This class allows to instantiate an object of type Exercise * @package dokeos.exercise * @author Olivier Brouckaert -* @version $Id: exercise.class.php 15942 2008-08-07 09:46:26Z elixir_julian $ +* @version $Id: exercise.class.php 15944 2008-08-07 13:47:39Z elixir_julian $ */ @@ -674,13 +674,22 @@ class Exercise $radios[] = FormValidator :: createElement ('radio', 'exerciseType', null, get_lang('SimpleExercise'),'1'); $radios[] = FormValidator :: createElement ('radio', 'exerciseType', null, get_lang('SequentialExercise'),'2'); $form -> addGroup($radios, null, get_lang('ExerciseType').' : ', '
'); - + + $form -> addElement('html','
+
 
+ +
'); // random + $form -> addElement('html',''); + // submit $form -> addElement('submit', 'submitExercise', get_lang('Ok'));