Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
82637c02
Commit
82637c02
authored
Oct 26, 2006
by
Steven Wittens
Browse files
Swap columns on admin/by-module to alphabetize modules left to right
parent
cb8be5f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/system/system.module
View file @
82637c02
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment