diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-26 22:07:03 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-26 22:07:03 +0000 |
commit | 82637c026af9fbb2c147614e75bf99c7622ee2ae (patch) | |
tree | 1a45b28134b7d54cd0652133e781621119a6444a /modules/system/system.module | |
parent | cb8be5f82182998bfb5a69ef10a5354e1ae2accd (diff) | |
download | brdo-82637c026af9fbb2c147614e75bf99c7622ee2ae.tar.gz brdo-82637c026af9fbb2c147614e75bf99c7622ee2ae.tar.bz2 |
Swap columns on admin/by-module to alphabetize modules left to right
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; } |