diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-29 08:37:48 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-29 08:37:48 +0000 |
commit | e1a7144b3320dacc2b1c7065ef2c126e265967d5 (patch) | |
tree | 6fe2eea36237486298180c8c4d2d9c22231f8683 | |
parent | d0169f4b412e409dad9031d51f362bed0b55c1fd (diff) | |
download | brdo-e1a7144b3320dacc2b1c7065ef2c126e265967d5.tar.gz brdo-e1a7144b3320dacc2b1c7065ef2c126e265967d5.tar.bz2 |
Fix table row striping on status report page
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 8c27bccc6..0789d8841 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1809,7 +1809,7 @@ function theme_status_report(&$requirements) { $output = '<table class="system-status-report">'; foreach ($requirements as $requirement) { if ($requirement['#type'] == '') { - $class = $i % 2 == 0 ? 'even' : 'odd'; + $class = ++$i % 2 == 0 ? 'even' : 'odd'; $classes = array( REQUIREMENT_INFO => 'info', |