From 989f978b9accaf4c324804ada95aa320c06d0568 Mon Sep 17 00:00:00 2001 From: Neil Drumm <drumm@3064.no-reply.drupal.org> Date: Fri, 8 Sep 2006 23:13:00 +0000 Subject: [PATCH] #82867 by RobRoy. Two variables were not initialized. --- modules/system/system.module | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/system/system.module b/modules/system/system.module index a700c04359f8..c60041ec2cc7 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1429,6 +1429,7 @@ function system_status($check = FALSE) { * Theme status report */ function theme_status_report(&$requirements) { + $i = 0; $output = '<table class="system-status-report">'; foreach ($requirements as $requirement) { if ($requirement['#type'] == '') { @@ -1727,6 +1728,7 @@ function system_admin_compact_mode() { * @themeable */ function theme_admin_page($blocks) { + $stripe = 0; foreach ($blocks as $block) { if ($block_output = theme('admin_block', $block)) { if (!$block['position']) { -- GitLab