diff --git a/main/exercice/hotspot_admin.inc.php b/main/exercice/hotspot_admin.inc.php
index 8ef4f6ad7f..a6d0553b5f 100644
--- a/main/exercice/hotspot_admin.inc.php
+++ b/main/exercice/hotspot_admin.inc.php
@@ -24,17 +24,15 @@
* @author Toon Keppens
* @version $Id: admin.php 10680 2007-01-11 21:26:23Z pcool $
*/
-
+require_once(api_get_path(LIBRARY_PATH).'text.lib.php');
// ALLOWED_TO_INCLUDE is defined in admin.php
-if(!defined('ALLOWED_TO_INCLUDE'))
-{
+if(!defined('ALLOWED_TO_INCLUDE')) {
exit();
}
$modifyAnswers = $_GET['hotspotadmin'];
-if(!is_object($objQuestion))
-{
+if(!is_object($objQuestion)) {
$objQuestion = Question :: read($modifyAnswers);
}
@@ -87,8 +85,6 @@ if($modifyIn)
$weighting=unserialize($weighting);
$hotspot_coordinates=unserialize($hotspot_coordinates);
$hotspot_type=unserialize($hotspot_type);
-
-
unset($buttonBack);
}
@@ -105,53 +101,43 @@ if($submitAnswers || $buttonBack)
$reponse[$i]=trim($reponse[$i]);
$comment[$i]=trim($comment[$i]);
- $weighting[$i]=intval($weighting[$i]);
+ $weighting[$i]=$weighting[$i]; // it can be float
// checks if field is empty
- if(empty($reponse[$i]) && $reponse[$i] != '0')
- {
+ if(empty($reponse[$i]) && $reponse[$i] != '0') {
$msgErr=get_lang('HotspotGiveAnswers');
// clears answers already recorded into the Answer object
$objAnswer->cancel();
-
break;
}
- if($weighting[$i] <= 0)
- {
+ if($weighting[$i] <= 0) {
$msgErr=get_lang('HotspotWeightingError');
-
// clears answers already recorded into the Answer object
$objAnswer->cancel();
-
break;
}
- if($hotspot_coordinates[$i] == '0;0|0|0' || empty($hotspot_coordinates[$i]))
- {
+
+ if($hotspot_coordinates[$i] == '0;0|0|0' || empty($hotspot_coordinates[$i])) {
$msgErr=get_lang('HotspotNotDrawn');
-
// clears answers already recorded into the Answer object
$objAnswer->cancel();
-
break;
}
} // end for()
- if(empty($msgErr))
- {
+ if(empty($msgErr)) {
- for($i=1;$i <= $nbrAnswers;$i++)
- {
+ for($i=1;$i <= $nbrAnswers;$i++) {
if($debug>0){echo str_repeat(' ',4).'$answerType is HOT_SPOT'."
\n";}
$reponse[$i]=trim($reponse[$i]);
$comment[$i]=addslashes(trim($comment[$i]));
- $weighting[$i]=intval($weighting[$i]);
- if($weighting[$i])
- {
+ $weighting[$i]=($weighting[$i]); //it can be float
+ if($weighting[$i]) {
$questionWeighting+=$weighting[$i];
}
// creates answer
@@ -165,9 +151,7 @@ if($submitAnswers || $buttonBack)
$objQuestion->save($exerciseId);
$editQuestion=$questionId;
-
unset($modifyAnswers);
-
echo '';
}
@@ -322,15 +306,13 @@ if($modifyAnswers)
-