|
@@ -4654,14 +4654,16 @@ EOT;
|
|
|
|
|
|
$score = [];
|
|
|
if ($show_results) {
|
|
|
+ $compareResult = bccomp($my_total_score, $my_total_weight, 3);
|
|
|
+ $scorePassed = $compareResult === 1 || $compareResult === 0;
|
|
|
+
|
|
|
$score = [
|
|
|
'result' => self::show_score(
|
|
|
$my_total_score,
|
|
|
$my_total_weight,
|
|
|
- false,
|
|
|
- true
|
|
|
+ false
|
|
|
),
|
|
|
- 'pass' => $my_total_score >= $my_total_weight ? true : false,
|
|
|
+ 'pass' => $scorePassed,
|
|
|
'score' => $my_total_score,
|
|
|
'weight' => $my_total_weight,
|
|
|
'comments' => $comnt,
|
|
@@ -4683,7 +4685,6 @@ EOT;
|
|
|
$question_content = '';
|
|
|
if ($show_results) {
|
|
|
$question_content = '<div class="question_row_answer">';
|
|
|
-
|
|
|
if ($showQuestionScore == false) {
|
|
|
$score = [];
|
|
|
}
|