Fix for bug 4127:

In the course participants page, selecting an initials filter in one course
and then moving to another (the filter would propagate) could result in few
or no results being displayed. The teacher would then have no way of
resetting the filter and viewing all (or possibly any) participants.

Fixed by making each course participant page independent. They no longer
share sort orders, collapsed column state, or initials filters.
This commit is contained in:
defacer
2005-10-21 01:13:56 +00:00
parent 74d60e20ba
commit f77efbe3be
+2 -2
View File
@@ -136,7 +136,7 @@
$tablecolumns = array('picture', 'fullname', 'city', 'country', 'lastaccess');
$tableheaders = array('', get_string('fullname'), get_string('city'), get_string('country'), get_string('lastaccess'));
$table = new flexible_table('user-index-teachers');
$table = new flexible_table('user-index-teachers-'.$course->id);
$table->define_columns($tablecolumns);
$table->define_headers($tableheaders);
@@ -246,7 +246,7 @@
$tablecolumns = array('picture', 'fullname', 'city', 'country', 'lastaccess');
$tableheaders = array('', get_string('fullname'), get_string('city'), get_string('country'), get_string('lastaccess'));
$table = new flexible_table('user-index-students');
$table = new flexible_table('user-index-students-'.$course->id);
$table->define_columns($tablecolumns);
$table->define_headers($tableheaders);