Browse Source

Fix bug with userdisplay check.

MOODLE_31_STABLE
Dan Marsden 8 years ago
parent
commit
ef2097167c
  1. 2
      renderables.php

2
renderables.php

@ -374,7 +374,7 @@ class attendance_user_data implements renderable {
foreach ($this->coursesatts as $atid => $ca) { foreach ($this->coursesatts as $atid => $ca) {
// Check to make sure the user can view this cm. // Check to make sure the user can view this cm.
if (!get_fast_modinfo($ca->courseid)->instances['attendance'][$ca->attid]->uservisible) { if (!get_fast_modinfo($ca->courseid)->instances['attendance'][$ca->attid]->uservisible) {
unset($this->courseatts[$atid]); unset($this->coursesatts[$atid]);
continue; continue;
} }
$this->statuses[$ca->attid] = attendance_get_statuses($ca->attid); $this->statuses[$ca->attid] = attendance_get_statuses($ca->attid);

Loading…
Cancel
Save