From 829d40565006cf416f8ed76b5154d1c217b01ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20B=C3=B6sch?= Date: Tue, 25 Nov 2025 18:27:08 +0100 Subject: [PATCH] MDL-87299 qtype_match: Remove Bootstrap 5 table borders. --- public/question/type/match/renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/question/type/match/renderer.php b/public/question/type/match/renderer.php index c6f1df5e18a..09216665c84 100644 --- a/public/question/type/match/renderer.php +++ b/public/question/type/match/renderer.php @@ -47,7 +47,7 @@ class qtype_match_renderer extends qtype_with_combined_feedback_renderer { $result = html_writer::div($question->format_questiontext($qa), 'qtext', ['id' => $questiontextid]); $result .= html_writer::start_tag('div', ['class' => 'ablock']); - $result .= html_writer::start_tag('table', ['class' => 'answer', 'role' => 'presentation']); + $result .= html_writer::start_tag('table', ['class' => 'answer table-reboot', 'role' => 'presentation']); $result .= html_writer::start_tag('tbody', ['role' => 'presentation']); $parity = 0;