Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
de8128c8
Commit
de8128c8
authored
Jul 28, 2010
by
Dries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Patch
#809384
by mgifford: title attribute should be inside control tag on admin interface.
parent
8a128c64
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/user/user.admin.inc
modules/user/user.admin.inc
+3
-1
No files found.
modules/user/user.admin.inc
View file @
de8128c8
...
...
@@ -758,7 +758,9 @@ function theme_user_admin_permissions($variables) {
'class'
=>
array
(
'permission'
),
);
foreach
(
element_children
(
$form
[
'checkboxes'
])
as
$rid
)
{
$row
[]
=
array
(
'data'
=>
drupal_render
(
$form
[
'checkboxes'
][
$rid
][
$key
]),
'class'
=>
array
(
'checkbox'
),
'title'
=>
$roles
[
$rid
]
.
' : '
.
t
(
$key
));
$form
[
'checkboxes'
][
$rid
][
$key
][
'#title'
]
=
$roles
[
$rid
]
.
': '
.
t
(
$key
);
$form
[
'checkboxes'
][
$rid
][
$key
][
'#title_display'
]
=
'invisible'
;
$row
[]
=
array
(
'data'
=>
drupal_render
(
$form
[
'checkboxes'
][
$rid
][
$key
]),
'class'
=>
array
(
'checkbox'
));
}
}
$rows
[]
=
$row
;
...
...
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