From 4d8005d09a80109fbcff9ea84cbd4a1dcfce89d0 Mon Sep 17 00:00:00 2001 From: andreyun Date: Mon, 28 Jul 2014 22:35:28 -0400 Subject: [PATCH] update patch in #2025907 for 7.x-3.x-dev compatibility --- alpha/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpha/template.php b/alpha/template.php index a878078..fe5e68d 100644 --- a/alpha/template.php +++ b/alpha/template.php @@ -344,7 +344,7 @@ function alpha_alpha_preprocess_html(&$vars) { } } - if (($theme->settings['debug']['grid'] || $theme->settings['debug']['block']) && $theme->settings['debug']['access']) { + if (($theme->settings['debug']['grid'] || $theme->settings['debug']['block']) && isset($theme->settings['debug']['access']) && $theme->settings['debug']['access']) { if ($theme->settings['debug']['grid'] && $theme->settings['debug']['grid_active']) { $vars['attributes_array']['class'][] = 'alpha-grid-debug'; } -- 1.9.1