diff options
Diffstat (limited to 'modules/system/system.module')
-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 e94a6fb7f..8c27bccc6 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -2255,7 +2255,7 @@ function theme_system_admin_by_module($menu_items) { if ($block_output = theme('admin_block', $block)) { if (!$block['position']) { // Perform automatic striping. - $block['position'] = $stripe++ % 2 ? 'left' : 'right'; + $block['position'] = ++$stripe % 2 ? 'left' : 'right'; } $container[$block['position']] .= $block_output; } |