summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-09-08 23:13:00 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-09-08 23:13:00 +0000
commit989f978b9accaf4c324804ada95aa320c06d0568 (patch)
tree41ff99d2ae77a8147ac39089745720a822760d81
parent75c5ec2b3937a4939af64e6e4226ea628dba9754 (diff)
downloadbrdo-989f978b9accaf4c324804ada95aa320c06d0568.tar.gz
brdo-989f978b9accaf4c324804ada95aa320c06d0568.tar.bz2
#82867 by RobRoy. Two variables were not initialized.
-rw-r--r--modules/system/system.module2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index a700c0435..c60041ec2 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']) {