From 222377929b7e292504bab8c7d526c1def646c311 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Mon, 22 Jan 2018 09:36:13 +0000 Subject: [PATCH] Issue #2938360 by markconroy: Change hook_preprocess_block to use $variables instead of $vars --- core/profiles/demo_umami/themes/umami/umami.theme | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/profiles/demo_umami/themes/umami/umami.theme b/core/profiles/demo_umami/themes/umami/umami.theme index 69829548c4a..07749eb7264 100644 --- a/core/profiles/demo_umami/themes/umami/umami.theme +++ b/core/profiles/demo_umami/themes/umami/umami.theme @@ -42,8 +42,8 @@ function umami_preprocess_field(&$variables, $hook) { /** * Implements hook_preprocess_block(). */ -function umami_preprocess_block(&$vars) { - $vars['title_attributes']['class'][] = 'block__title'; +function umami_preprocess_block(&$variables) { + $variables['title_attributes']['class'][] = 'block__title'; } /**