From ca572033a746bb0f0b952d09fb417fb4065a28d1 Mon Sep 17 00:00:00 2001 From: Mihail Geshoski Date: Tue, 30 Sep 2025 22:12:15 +0800 Subject: [PATCH] MDL-86800 mod_folder: Fix incorrect table borders --- mod/folder/lib.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/folder/lib.php b/mod/folder/lib.php index 82393fc72ea..bc4310a57fd 100644 --- a/mod/folder/lib.php +++ b/mod/folder/lib.php @@ -654,7 +654,8 @@ function folder_print_recent_mod_activity($activity, $courseid, $detail, $modnam $tableoptions = [ 'border' => '0', 'cellpadding' => '3', - 'cellspacing' => '0' + 'cellspacing' => '0', + 'class' => 'table-reboot', ]; $output = html_writer::start_tag('table', $tableoptions); $output .= html_writer::start_tag('tr');