commit b7d4e3f7506a605ebdfa00094701d728ba5918d6 Author: Joel Pittet Date: Fri Jul 25 21:00:25 2014 -0700 missing p tag diff --git a/core/modules/update/templates/update-report.html.twig b/core/modules/update/templates/update-report.html.twig index d3cba0c..ae121cc 100644 --- a/core/modules/update/templates/update-report.html.twig +++ b/core/modules/update/templates/update-report.html.twig @@ -5,7 +5,7 @@ * * Available variables: * - last_checked: Themed last time update data was checked. - * - update_no_data: Message when there are no project updates. + * - no_updates_message: Message when there are no project updates. * - project_types: A list of project types. * - label: The project type label. * - table: The project status table. @@ -21,5 +21,5 @@

{{ project_type.label }}

{{ project_type.table }} {% else %} - {{ update_no_data }} +

{{ no_updates_message }}

{% endfor %} diff --git a/core/modules/update/update.report.inc b/core/modules/update/update.report.inc index 275f9a6..2b1900f 100644 --- a/core/modules/update/update.report.inc +++ b/core/modules/update/update.report.inc @@ -38,7 +38,7 @@ function template_preprocess_update_report(&$variables) { // For no project update data, populate no data message. if (empty($data)) { - $variables['update_no_data'] = _update_no_data(); + $variables['no_updates_message'] = _update_no_data(); } $rows = array();