@@ -17,25 +17,25 @@ |
||
| 17 | 17 | $hotspotId = $_GET['hotspotId']; |
| 18 | 18 | $exerciseId = $objExcercise->selectId(); |
| 19 | 19 | if ($_GET['answerId'] == "0") { // click is NOT on a hotspot |
| 20 | - $hit = 0; |
|
| 21 | - $answerId = $hotspotId; |
|
| 20 | + $hit = 0; |
|
| 21 | + $answerId = $hotspotId; |
|
| 22 | 22 | |
| 23 | - // remove from session |
|
| 24 | - unset($_SESSION['exerciseResult'][$questionId][$answerId]); |
|
| 23 | + // remove from session |
|
| 24 | + unset($_SESSION['exerciseResult'][$questionId][$answerId]); |
|
| 25 | 25 | |
| 26 | - // Save clicking order |
|
| 27 | - //$answerOrderId = count($_SESSION['exerciseResult'][$questionId]['order'])+1; |
|
| 28 | - //$_SESSION['exerciseResult'][$questionId]['order'][$answerOrderId] = $answerId; |
|
| 26 | + // Save clicking order |
|
| 27 | + //$answerOrderId = count($_SESSION['exerciseResult'][$questionId]['order'])+1; |
|
| 28 | + //$_SESSION['exerciseResult'][$questionId]['order'][$answerOrderId] = $answerId; |
|
| 29 | 29 | } else { // user clicked ON a hotspot |
| 30 | - $hit = 1; |
|
| 31 | - $answerId = $hotspotId; |
|
| 30 | + $hit = 1; |
|
| 31 | + $answerId = $hotspotId; |
|
| 32 | 32 | |
| 33 | - // Save into session |
|
| 34 | - $_SESSION['exerciseResult'][$questionId][$answerId] = $hit; |
|
| 33 | + // Save into session |
|
| 34 | + $_SESSION['exerciseResult'][$questionId][$answerId] = $hit; |
|
| 35 | 35 | |
| 36 | - // Save clicking order |
|
| 37 | - //$answerOrderId = count($_SESSION['exerciseResult'][$questionId]['order'])+1; |
|
| 38 | - //$_SESSION['exerciseResult'][$questionId]['order'][$answerOrderId] = $answerId; |
|
| 36 | + // Save clicking order |
|
| 37 | + //$answerOrderId = count($_SESSION['exerciseResult'][$questionId]['order'])+1; |
|
| 38 | + //$_SESSION['exerciseResult'][$questionId]['order'][$answerOrderId] = $answerId; |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | //round-up the coordinates |
@@ -907,10 +907,10 @@ |
||
| 907 | 907 | <?php } else { ?> |
| 908 | 908 | <input class="form-control" type="text" name="weighting[<?php echo $i; ?>]" value="<?php echo (isset($weighting[$i]) ? $weighting[$i] : 10); ?>" /> |
| 909 | 909 | <?php |
| 910 | - } |
|
| 911 | - } |
|
| 912 | - if ($answerType == HOT_SPOT) { |
|
| 913 | - ?> |
|
| 910 | + } |
|
| 911 | + } |
|
| 912 | + if ($answerType == HOT_SPOT) { |
|
| 913 | + ?> |
|
| 914 | 914 | <input class="form-control" type="text" name="weighting[<?php echo $i; ?>]" value="<?php echo (isset($weighting[$i]) ? $weighting[$i] : 10); ?>" /> |
| 915 | 915 | <input type="hidden" name="hotspot_coordinates[<?php echo $i; ?>]" value="<?php echo (empty($hotspot_coordinates[$i]) ? '0;0|0|0' : $hotspot_coordinates[$i]); ?>" /> |
| 916 | 916 | <input type="hidden" name="hotspot_type[<?php echo $i; ?>]" value="<?php echo (empty($hotspot_type[$i]) ? 'square' : $hotspot_type[$i]); ?>" /> |
@@ -17,15 +17,15 @@ |
||
| 17 | 17 | $answerOrderId = count($_SESSION['exerciseResult'][$questionId]['ids'])+1; |
| 18 | 18 | if ($_GET['answerId'] == "0") // click is NOT on a hotspot |
| 19 | 19 | { |
| 20 | - $hit = 0; |
|
| 21 | - $answerId = NULL; |
|
| 20 | + $hit = 0; |
|
| 21 | + $answerId = NULL; |
|
| 22 | 22 | } |
| 23 | 23 | else // user clicked ON a hotspot |
| 24 | 24 | { |
| 25 | - $hit = 1; |
|
| 26 | - $answerId = api_substr($_GET['answerId'],22,2); |
|
| 27 | - // Save into session |
|
| 28 | - $_SESSION['exerciseResult'][$questionId][$answerId] = $hit; |
|
| 25 | + $hit = 1; |
|
| 26 | + $answerId = api_substr($_GET['answerId'],22,2); |
|
| 27 | + // Save into session |
|
| 28 | + $_SESSION['exerciseResult'][$questionId][$answerId] = $hit; |
|
| 29 | 29 | } |
| 30 | 30 | //round-up the coordinates |
| 31 | 31 | $coords = explode('/',$coordinates); |
@@ -223,10 +223,10 @@ |
||
| 223 | 223 | |
| 224 | 224 | $counter++; |
| 225 | 225 | if ($objExercise->type == ONE_PER_PAGE) { |
| 226 | - $question_title = Display::url($counter.'. '.cut($objQuestionTmp->selectTitle(), 40), $url); |
|
| 227 | - $question_title = $counter.'. '.cut($objQuestionTmp->selectTitle(), 40); |
|
| 226 | + $question_title = Display::url($counter.'. '.cut($objQuestionTmp->selectTitle(), 40), $url); |
|
| 227 | + $question_title = $counter.'. '.cut($objQuestionTmp->selectTitle(), 40); |
|
| 228 | 228 | } else { |
| 229 | - $question_title = $counter.'. '.cut($objQuestionTmp->selectTitle(), 40); |
|
| 229 | + $question_title = $counter.'. '.cut($objQuestionTmp->selectTitle(), 40); |
|
| 230 | 230 | } |
| 231 | 231 | //Check if the question doesn't have an answer |
| 232 | 232 | if (!in_array($questionId, $exercise_result)) { |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | |
| 60 | 60 | $gradebook = ''; |
| 61 | 61 | if (isset($_SESSION['gradebook'])) { |
| 62 | - $gradebook= $_SESSION['gradebook']; |
|
| 62 | + $gradebook= $_SESSION['gradebook']; |
|
| 63 | 63 | } |
| 64 | 64 | if (!empty($gradebook) && $gradebook=='view') { |
| 65 | 65 | $interbreadcrumb[] = array( |
@@ -79,8 +79,8 @@ discard block |
||
| 79 | 79 | $htmlHeadXtra[] = '<link rel="stylesheet" href="' . api_get_path(WEB_LIBRARY_JS_PATH) . 'hotspot/css/hotspot.css">'; |
| 80 | 80 | |
| 81 | 81 | if ($origin != 'learnpath') { |
| 82 | - // So we are not in learnpath tool |
|
| 83 | - Display::display_header($nameTools, get_lang('Exercise')); |
|
| 82 | + // So we are not in learnpath tool |
|
| 83 | + Display::display_header($nameTools, get_lang('Exercise')); |
|
| 84 | 84 | } else { |
| 85 | 85 | $htmlHeadXtra[] = " |
| 86 | 86 | <style> |
@@ -94,19 +94,19 @@ discard block |
||
| 94 | 94 | |
| 95 | 95 | // I'm in a preview mode as course admin. Display the action menu. |
| 96 | 96 | if (api_is_course_admin() && $origin != 'learnpath') { |
| 97 | - echo '<div class="actions">'; |
|
| 98 | - echo '<a href="admin.php?'.api_get_cidreq().'&exerciseId='.$objExercise->id.'">'. |
|
| 97 | + echo '<div class="actions">'; |
|
| 98 | + echo '<a href="admin.php?'.api_get_cidreq().'&exerciseId='.$objExercise->id.'">'. |
|
| 99 | 99 | Display::return_icon('back.png', get_lang('GoBackToQuestionList'), array(), 32).'</a>'; |
| 100 | - echo '<a href="exercise_admin.php?'.api_get_cidreq().'&modifyExercise=yes&exerciseId='.$objExercise->id.'">'. |
|
| 100 | + echo '<a href="exercise_admin.php?'.api_get_cidreq().'&modifyExercise=yes&exerciseId='.$objExercise->id.'">'. |
|
| 101 | 101 | Display::return_icon('edit.png', get_lang('ModifyExercise'), array(), 32).'</a>'; |
| 102 | - echo '</div>'; |
|
| 102 | + echo '</div>'; |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | $feedback_type = $objExercise->feedback_type; |
| 106 | 106 | $exercise_stat_info = $objExercise->get_stat_track_exercise_info_by_exe_id($exe_id); |
| 107 | 107 | |
| 108 | 108 | if (!empty($exercise_stat_info['data_tracking'])) { |
| 109 | - $question_list = explode(',', $exercise_stat_info['data_tracking']); |
|
| 109 | + $question_list = explode(',', $exercise_stat_info['data_tracking']); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | $learnpath_id = $exercise_stat_info['orig_lp_id']; |
@@ -180,19 +180,19 @@ discard block |
||
| 180 | 180 | Session::erase('exe_id'); |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | - Display::display_footer(); |
|
| 183 | + Display::display_footer(); |
|
| 184 | 184 | } else { |
| 185 | - $lp_mode = isset($_SESSION['lp_mode']) ? $_SESSION['lp_mode'] : null; |
|
| 186 | - $url = '../newscorm/lp_controller.php?cidReq='.api_get_course_id().'&action=view&lp_id='.$learnpath_id.'&lp_item_id='.$learnpath_item_id.'&exeId='.$exercise_stat_info['exe_id'].'&fb_type='.$objExercise->feedback_type; |
|
| 187 | - $href = ($lp_mode == 'fullscreen')?' window.opener.location.href="'.$url.'" ':' top.location.href="'.$url.'"'; |
|
| 185 | + $lp_mode = isset($_SESSION['lp_mode']) ? $_SESSION['lp_mode'] : null; |
|
| 186 | + $url = '../newscorm/lp_controller.php?cidReq='.api_get_course_id().'&action=view&lp_id='.$learnpath_id.'&lp_item_id='.$learnpath_item_id.'&exeId='.$exercise_stat_info['exe_id'].'&fb_type='.$objExercise->feedback_type; |
|
| 187 | + $href = ($lp_mode == 'fullscreen')?' window.opener.location.href="'.$url.'" ':' top.location.href="'.$url.'"'; |
|
| 188 | 188 | |
| 189 | 189 | if (api_is_allowed_to_session_edit()) { |
| 190 | 190 | Session::erase('objExercise'); |
| 191 | 191 | Session::erase('exe_id'); |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - // Record the results in the learning path, using the SCORM interface (API) |
|
| 195 | - echo "<script>window.parent.API.void_save_asset('$total_score', '$max_score', 0, 'completed');</script>"; |
|
| 194 | + // Record the results in the learning path, using the SCORM interface (API) |
|
| 195 | + echo "<script>window.parent.API.void_save_asset('$total_score', '$max_score', 0, 'completed');</script>"; |
|
| 196 | 196 | echo '<script type="text/javascript">'.$href.'</script>'; |
| 197 | - echo '</body></html>'; |
|
| 197 | + echo '</body></html>'; |
|
| 198 | 198 | } |
@@ -447,7 +447,7 @@ |
||
| 447 | 447 | $position = $row_max->max_position + 1; |
| 448 | 448 | |
| 449 | 449 | // Insert a new answer |
| 450 | - $params = [ |
|
| 450 | + $params = [ |
|
| 451 | 451 | 'c_id' => $course_id, |
| 452 | 452 | 'id' => $id, |
| 453 | 453 | 'question_id' => $question_id, |
@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | // Query db for answers |
| 32 | 32 | if ($answer_type==HOT_SPOT_DELINEATION) { |
| 33 | - $sql = "SELECT id, answer, hotspot_coordinates, hotspot_type, ponderation FROM $TBL_ANSWERS |
|
| 33 | + $sql = "SELECT id, answer, hotspot_coordinates, hotspot_type, ponderation FROM $TBL_ANSWERS |
|
| 34 | 34 | WHERE c_id = $course_id AND question_id = ".intval($questionId)." AND hotspot_type = 'delineation' ORDER BY id"; |
| 35 | 35 | } else { |
| 36 | - $sql = "SELECT id, answer, hotspot_coordinates, hotspot_type, ponderation FROM $TBL_ANSWERS |
|
| 36 | + $sql = "SELECT id, answer, hotspot_coordinates, hotspot_type, ponderation FROM $TBL_ANSWERS |
|
| 37 | 37 | WHERE c_id = $course_id AND question_id = ".intval($questionId)." ORDER BY id"; |
| 38 | 38 | } |
| 39 | 39 | $result = Database::query($sql); |
@@ -74,37 +74,37 @@ discard block |
||
| 74 | 74 | $hotSpot['id'] = $hotspot['id']; |
| 75 | 75 | $hotSpot['answer'] = $hotspot['answer']; |
| 76 | 76 | |
| 77 | - // Square or rectancle |
|
| 78 | - if ($hotspot['hotspot_type'] == 'square' ) |
|
| 79 | - { |
|
| 77 | + // Square or rectancle |
|
| 78 | + if ($hotspot['hotspot_type'] == 'square' ) |
|
| 79 | + { |
|
| 80 | 80 | $hotSpot['type'] = 'square'; |
| 81 | - } |
|
| 82 | - // Circle or ovale |
|
| 83 | - if ($hotspot['hotspot_type'] == 'circle') |
|
| 84 | - { |
|
| 81 | + } |
|
| 82 | + // Circle or ovale |
|
| 83 | + if ($hotspot['hotspot_type'] == 'circle') |
|
| 84 | + { |
|
| 85 | 85 | $hotSpot['type'] = 'circle'; |
| 86 | - } |
|
| 87 | - // Polygon |
|
| 88 | - if ($hotspot['hotspot_type'] == 'poly') |
|
| 89 | - { |
|
| 86 | + } |
|
| 87 | + // Polygon |
|
| 88 | + if ($hotspot['hotspot_type'] == 'poly') |
|
| 89 | + { |
|
| 90 | 90 | $hotSpot['type'] = 'poly'; |
| 91 | - } |
|
| 92 | - // Delineation |
|
| 93 | - if ($hotspot['hotspot_type'] == 'delineation') |
|
| 94 | - { |
|
| 91 | + } |
|
| 92 | + // Delineation |
|
| 93 | + if ($hotspot['hotspot_type'] == 'delineation') |
|
| 94 | + { |
|
| 95 | 95 | $hotSpot['type'] = 'delineation'; |
| 96 | - } |
|
| 97 | - // No error |
|
| 98 | - if ($hotspot['hotspot_type'] == 'noerror') |
|
| 99 | - { |
|
| 96 | + } |
|
| 97 | + // No error |
|
| 98 | + if ($hotspot['hotspot_type'] == 'noerror') |
|
| 99 | + { |
|
| 100 | 100 | $hotSpot['type'] = 'noerror'; |
| 101 | - } |
|
| 101 | + } |
|
| 102 | 102 | |
| 103 | - // This is a good answer, count + 1 for nmbr of clicks |
|
| 104 | - if ($hotspot['hotspot_type'] > 0) |
|
| 105 | - { |
|
| 106 | - $nmbrTries++; |
|
| 107 | - } |
|
| 103 | + // This is a good answer, count + 1 for nmbr of clicks |
|
| 104 | + if ($hotspot['hotspot_type'] > 0) |
|
| 105 | + { |
|
| 106 | + $nmbrTries++; |
|
| 107 | + } |
|
| 108 | 108 | |
| 109 | 109 | $hotSpot['coord'] = $hotspot['hotspot_coordinates']; |
| 110 | 110 | |
@@ -23,14 +23,14 @@ discard block |
||
| 23 | 23 | //Event::event_download($doc_url); |
| 24 | 24 | if (isset($_course['path'])) { |
| 25 | 25 | $course_path = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document'; |
| 26 | - $full_file_name = $course_path.Security::remove_XSS($doc_url); |
|
| 26 | + $full_file_name = $course_path.Security::remove_XSS($doc_url); |
|
| 27 | 27 | } else { |
| 28 | 28 | $course_path = api_get_path(SYS_COURSE_PATH).$cid.'/document'; |
| 29 | - $full_file_name = $course_path.Security::remove_XSS($doc_url); |
|
| 29 | + $full_file_name = $course_path.Security::remove_XSS($doc_url); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | if(!is_file($full_file_name)) { |
| 33 | - exit; |
|
| 33 | + exit; |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | if (!Security::check_abs_path($full_file_name, $course_path.'/')) { |
@@ -41,16 +41,16 @@ discard block |
||
| 41 | 41 | $extension=strtolower($extension[sizeof($extension)-1]); |
| 42 | 42 | |
| 43 | 43 | switch($extension) { |
| 44 | - case 'gz': $content_type='application/x-gzip'; break; |
|
| 45 | - case 'zip': $content_type='application/zip'; break; |
|
| 46 | - case 'pdf': $content_type='application/pdf'; break; |
|
| 47 | - case 'png': $content_type='image/png'; break; |
|
| 48 | - case 'gif': $content_type='image/gif'; break; |
|
| 49 | - case 'jpg': $content_type='image/jpeg'; break; |
|
| 50 | - case 'txt': $content_type='text/plain'; break; |
|
| 51 | - case 'htm': $content_type='text/html'; break; |
|
| 52 | - case 'html': $content_type='text/html'; break; |
|
| 53 | - default: $content_type='application/octet-stream'; break; |
|
| 44 | + case 'gz': $content_type='application/x-gzip'; break; |
|
| 45 | + case 'zip': $content_type='application/zip'; break; |
|
| 46 | + case 'pdf': $content_type='application/pdf'; break; |
|
| 47 | + case 'png': $content_type='image/png'; break; |
|
| 48 | + case 'gif': $content_type='image/gif'; break; |
|
| 49 | + case 'jpg': $content_type='image/jpeg'; break; |
|
| 50 | + case 'txt': $content_type='text/plain'; break; |
|
| 51 | + case 'htm': $content_type='text/html'; break; |
|
| 52 | + case 'html': $content_type='text/html'; break; |
|
| 53 | + default: $content_type='application/octet-stream'; break; |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | header('Content-disposition: filename='.$filename); |
@@ -68,23 +68,23 @@ discard block |
||
| 68 | 68 | */ |
| 69 | 69 | |
| 70 | 70 | if ($content_type == 'text/html') { |
| 71 | - $directory_name = dirname($full_file_name); |
|
| 71 | + $directory_name = dirname($full_file_name); |
|
| 72 | 72 | |
| 73 | - $dir=str_replace(array('\\',$_configuration['root_sys']."courses/".$_course['path'].'/document'),array('/',''),$directory_name); |
|
| 73 | + $dir=str_replace(array('\\',$_configuration['root_sys']."courses/".$_course['path'].'/document'),array('/',''),$directory_name); |
|
| 74 | 74 | |
| 75 | - if($dir[strlen($dir)-1] != '/') { |
|
| 76 | - $dir.='/'; |
|
| 77 | - } |
|
| 75 | + if($dir[strlen($dir)-1] != '/') { |
|
| 76 | + $dir.='/'; |
|
| 77 | + } |
|
| 78 | 78 | |
| 79 | 79 | |
| 80 | - //Parse whole file at one |
|
| 81 | - $fp = fopen($full_file_name, "r"); |
|
| 82 | - $file_content = fread ($fp, filesize ($full_file_name)); |
|
| 83 | - fclose($fp); |
|
| 84 | - //$file_content = api_replace_parameter($dir, $file_content, "src"); |
|
| 85 | - //$file_content = api_replace_parameter($dir, $file_content, "href"); |
|
| 80 | + //Parse whole file at one |
|
| 81 | + $fp = fopen($full_file_name, "r"); |
|
| 82 | + $file_content = fread ($fp, filesize ($full_file_name)); |
|
| 83 | + fclose($fp); |
|
| 84 | + //$file_content = api_replace_parameter($dir, $file_content, "src"); |
|
| 85 | + //$file_content = api_replace_parameter($dir, $file_content, "href"); |
|
| 86 | 86 | |
| 87 | - /* |
|
| 87 | + /* |
|
| 88 | 88 | //parse line per line |
| 89 | 89 | $file_content_array = file($full_file_name); |
| 90 | 90 | |
@@ -98,16 +98,16 @@ discard block |
||
| 98 | 98 | |
| 99 | 99 | |
| 100 | 100 | $exercisePath = api_get_self(); |
| 101 | - $exfile = explode('/',$exercisePath); |
|
| 102 | - $exfile = $exfile[sizeof($exfile)-1]; |
|
| 103 | - $exercisePath = substr($exercisePath,0,strpos($exercisePath,$exfile)); |
|
| 104 | - $exercisePath = $exercisePath; |
|
| 101 | + $exfile = explode('/',$exercisePath); |
|
| 102 | + $exfile = $exfile[sizeof($exfile)-1]; |
|
| 103 | + $exercisePath = substr($exercisePath,0,strpos($exercisePath,$exfile)); |
|
| 104 | + $exercisePath = $exercisePath; |
|
| 105 | 105 | |
| 106 | - $content = $file_content; |
|
| 107 | - $mit = "function Finish(){"; |
|
| 106 | + $content = $file_content; |
|
| 107 | + $mit = "function Finish(){"; |
|
| 108 | 108 | |
| 109 | - $js_content = "var SaveScoreVariable = 0; // This variable included by Dokeos System\n". |
|
| 110 | - "function mySaveScore() // This function included by Dokeos System\n". |
|
| 109 | + $js_content = "var SaveScoreVariable = 0; // This variable included by Dokeos System\n". |
|
| 110 | + "function mySaveScore() // This function included by Dokeos System\n". |
|
| 111 | 111 | "{\n". |
| 112 | 112 | " if (SaveScoreVariable==0)\n". |
| 113 | 113 | " {\n". |
@@ -125,23 +125,23 @@ discard block |
||
| 125 | 125 | "// Must be included \n". |
| 126 | 126 | "function Finish(){\n". |
| 127 | 127 | " mySaveScore();"; |
| 128 | - $newcontent = str_replace($mit,$js_content,$content); |
|
| 128 | + $newcontent = str_replace($mit,$js_content,$content); |
|
| 129 | 129 | |
| 130 | - $prehref="javascript:void(0);"; |
|
| 131 | - $posthref=$_configuration['root_web']."main/exercice/Hpdownload.php?doc_url=".$doc_url."&cid=".$cid."&uid=".$uid; |
|
| 132 | - $newcontent = str_replace($prehref,$posthref,$newcontent); |
|
| 130 | + $prehref="javascript:void(0);"; |
|
| 131 | + $posthref=$_configuration['root_web']."main/exercice/Hpdownload.php?doc_url=".$doc_url."&cid=".$cid."&uid=".$uid; |
|
| 132 | + $newcontent = str_replace($prehref,$posthref,$newcontent); |
|
| 133 | 133 | |
| 134 | 134 | |
| 135 | - $prehref="class=\"GridNum\" onclick="; |
|
| 136 | - $posthref="class=\"GridNum\" onMouseover="; |
|
| 137 | - $newcontent = str_replace($prehref,$posthref,$newcontent); |
|
| 135 | + $prehref="class=\"GridNum\" onclick="; |
|
| 136 | + $posthref="class=\"GridNum\" onMouseover="; |
|
| 137 | + $newcontent = str_replace($prehref,$posthref,$newcontent); |
|
| 138 | 138 | |
| 139 | 139 | |
| 140 | - header('Content-length: '.strlen($newcontent)); |
|
| 141 | - // Dipsp. |
|
| 142 | - echo $newcontent; |
|
| 140 | + header('Content-length: '.strlen($newcontent)); |
|
| 141 | + // Dipsp. |
|
| 142 | + echo $newcontent; |
|
| 143 | 143 | |
| 144 | - exit(); |
|
| 144 | + exit(); |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | //normal case, all non-html files |
@@ -98,10 +98,10 @@ |
||
| 98 | 98 | }*/ |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - // This is a good answer, count + 1 for nmbr of clicks |
|
| 102 | - if ($answers['weighting'][$i] > 0) { |
|
| 103 | - $nmbrTries++; |
|
| 104 | - } |
|
| 101 | + // This is a good answer, count + 1 for nmbr of clicks |
|
| 102 | + if ($answers['weighting'][$i] > 0) { |
|
| 103 | + $nmbrTries++; |
|
| 104 | + } |
|
| 105 | 105 | |
| 106 | 106 | $hotSpot['coord'] = $answers['hotspot_coordinates'][$i]; |
| 107 | 107 | $data['hotspots'][] = $hotSpot; |