mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
MDL-57766 assign: Put back the manual marker filter
I removed too much from gradingtable.php in the last patch.
This commit is contained in:
parent
846d899329
commit
dd7de4ea82
@ -302,6 +302,9 @@ class assign_grading_table extends table_sql implements renderable {
|
||||
if (!empty($markerfilter)) {
|
||||
if ($markerfilter == ASSIGN_MARKER_FILTER_NO_MARKER) {
|
||||
$where .= ' AND (uf.allocatedmarker IS NULL OR uf.allocatedmarker = 0)';
|
||||
} else {
|
||||
$where .= ' AND uf.allocatedmarker = :markerid';
|
||||
$params['markerid'] = $markerfilter;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user