MDL-86800 report_outline: Fix incorrect table borders

This commit is contained in:
Mihail Geshoski
2025-10-01 11:26:45 +08:00
parent 7fab2bf446
commit bdfd09fd16
+3 -3
View File
@@ -128,7 +128,7 @@ foreach ($sections as $i => $section) {
echo '<div class="content">';
if ($mode == "outline") {
echo "<table>";
echo "<table class='table-reboot'>";
}
foreach ($section->activities as $cm) {
@@ -149,7 +149,7 @@ foreach ($sections as $i => $section) {
echo '<div class="content">';
if ($mode == "outline") {
echo "<table>";
echo "<table class='table-reboot'>";
}
foreach ($cm->activities as $subcm) {
@@ -166,7 +166,7 @@ foreach ($sections as $i => $section) {
echo "</div>"; // Content.
echo "</div>"; // Subsection.
if ($mode == "outline") {
echo "<table>";
echo "<table class='table-reboot'>";
}
continue;