Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
634d308b
Commit
634d308b
authored
Dec 13, 2009
by
Angie Byron
Browse files
#658032
by Arancaytar: Fixed theme_tableselect() does not pass on #attributes key.
parent
a1e08d93
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/form.inc
View file @
634d308b
...
...
@@ -2388,7 +2388,7 @@ function theme_tableselect($variables) {
$first_col = $element['#js_select'] ? array(theme('table_select_header_cell')) : array('');
$header = array_merge($first_col, $header);
}
return theme('table', array('header' => $header, 'rows' => $rows, 'empty' => $element['#empty']));
return theme('table', array('header' => $header, 'rows' => $rows, 'empty' => $element['#empty']
, 'attributes' => $element['#attributes']
));
}
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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