diff --git a/user/classes/participants_table.php b/user/classes/participants_table.php index e93c844cfef..08ba8ccdebe 100644 --- a/user/classes/participants_table.php +++ b/user/classes/participants_table.php @@ -158,6 +158,9 @@ class participants_table extends \table_sql { $this->define_columns($columns); $this->define_headers($headers); + // Make this table sorted by first name by default. + $this->sortable(true, 'firstname'); + $this->no_sorting('select'); $this->set_attribute('id', 'participants');