Fix warning division by zero in gradebook (scored attendances) and check/uncheck all in attendances

1.10.x
José Loguercio 10 years ago
parent 9479f46474
commit 81f0346b46
  1. 6
      main/attendance/index.php
  2. 2
      main/gradebook/lib/gradebook_data_generator.class.php

@ -150,9 +150,11 @@ $(function() {
var calendar_id = col_split[2];
if (this.checked) {
$(".checkboxes_col_"+calendar_id+" input:checkbox").attr("checked",true);
$(".checkboxes_col_"+calendar_id+" input:checkbox").prop("checked",true);
$(".checkboxes_col_"+calendar_id+"").addClass("row_selected");
} else {
$(".checkboxes_col_"+calendar_id+" input:checkbox").attr("checked",false);
$(".checkboxes_col_"+calendar_id+" input:checkbox").prop("checked",false);
$(".checkboxes_col_"+calendar_id+"").removeClass("row_selected");
}
});

@ -352,7 +352,7 @@ class GradebookDataGenerator
case 'L' :
//if ($parentId == 0) {
$scoreWeight = [
$score[0] / $score[1] * $item->get_weight(),
($score[1] > 0) ? $score[0] / $score[1] * $item->get_weight() : 0,
$item->get_weight()
];
//}

Loading…
Cancel
Save