MDL-79681 user: fix conditional to get the last access to a course

This commit is contained in:
Víctor Déniz 2022-08-19 13:14:36 +01:00 committed by Paul Holden
parent 9587029a46
commit 5db1724a05
No known key found for this signature in database
GPG Key ID: A81A96D6045F6164

View File

@ -229,7 +229,7 @@ class participants_filter extends \core\output\datafilter {
// Get minimum lastaccess for this course and display a dropbox to filter by lastaccess going back this far.
// We need to make it diferently for normal courses and site course.
if (!$this->course->id == SITEID) {
if (!($this->course->id == SITEID)) {
// Regular course.
$params = [
'courseid' => $this->course->id,