MDL-67684 core: Add missing li tag

This commit is contained in:
Andrew Nicols
2020-01-14 08:47:20 +08:00
parent 86a19e4910
commit 85b9cf9ce4
+2 -2
View File
@@ -9480,7 +9480,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 {";
@@ -9503,7 +9503,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> ';