MDL-67684 core: Add missing li tag

This commit is contained in:
Andrew Nicols
2020-01-14 08:47:08 +08:00
parent 77be1e3fe3
commit 3467ce09c8
+2 -2
View File
@@ -9509,7 +9509,7 @@ function get_performance_info() {
$mode = ' <span title="request cache">[r]</span>';
break;
}
$html .= '<ul class="cache-definition-stats list-unstyled ml-1 mb-1 cache-mode-'.$modeclass.' card d-inline-block">';
$html .= '<li class="d-inline-flex"><ul class="cache-definition-stats list-unstyled ml-1 mb-1 cache-mode-'.$modeclass.' card d-inline-block">';
$html .= '<li class="cache-definition-stats-heading p-t-1 card-header bg-dark bg-inverse font-weight-bold">' .
$definition . $mode.'</li>';
$text .= "$definition {";
@@ -9532,7 +9532,7 @@ function get_performance_info() {
$html .= "<li class=\"cache-store-stats $cachestoreclass p-x-1\">&nbsp;</li>";
}
}
$html .= '</ul>';
$html .= '</ul></li>';
$text .= '} ';
}
$html .= '</ul> ';