From 82637c026af9fbb2c147614e75bf99c7622ee2ae Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Thu, 26 Oct 2006 22:07:03 +0000 Subject: Swap columns on admin/by-module to alphabetize modules left to right --- modules/system/system.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/system/system.module') 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; } -- cgit v1.2.3