From 7ef1e09a87c5b36e57325440996a7a3eddaeb976 Mon Sep 17 00:00:00 2001 From: Mihail Geshoski Date: Tue, 30 Sep 2025 22:13:48 +0800 Subject: [PATCH] MDL-86800 mod_workshop: Fix incorrect table borders --- mod/workshop/allocation/manual/renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/workshop/allocation/manual/renderer.php b/mod/workshop/allocation/manual/renderer.php index 4bcbf9ada81..f8f3c2fa08f 100644 --- a/mod/workshop/allocation/manual/renderer.php +++ b/mod/workshop/allocation/manual/renderer.php @@ -65,7 +65,7 @@ class workshopallocation_manual_renderer extends mod_workshop_renderer { $reviewers = array_map('fullname', $reviewers); $table = new html_table(); - $table->attributes['class'] = 'allocations'; + $table->attributes['class'] = 'allocations table-reboot'; $table->head = array(get_string('participantreviewedby', 'workshop'), get_string('participant', 'workshop'), get_string('participantrevierof', 'workshop'));