Skip to content
Snippets Groups Projects
Commit df54550a authored by catch's avatar catch
Browse files

Issue #1143922 by FatherShawn, kscheirer: Fixed Undefined index: value in theme_status_report().

parent 744c9646
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -511,6 +511,13 @@ function theme_status_report($variables) {
else {
$severity = $severities[REQUIREMENT_INFO];
}
// hook_requirements does not require value to be set. Set to null if not:
if (isset($requirement['value'])) {
$value = $requirement['value'];
}
else {
$value = NULL;
}
$severity['icon'] = '<div title="' . $severity['title'] . '"><span class="visually-hidden">' . $severity['title'] . '</span></div>';
......@@ -518,7 +525,7 @@ function theme_status_report($variables) {
$output .= '<tr class="' . $severity['class'] . '">';
$output .= '<td class="status-icon">' . $severity['icon'] . '</td>';
$output .= '<td class="status-title">' . $requirement['title'] . '</td>';
$output .= '<td class="status-value">' . $requirement['value'];
$output .= '<td class="status-value">' . $value;
if (!empty($requirement['description'])) {
$output .= '<div class="description">' . $requirement['description'] . '</div>';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment