diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-11-21 08:16:39 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-11-21 08:16:39 +0000 |
commit | 001d54f663136894ce0dce0a09693cc107cfb788 (patch) | |
tree | 745c0a9479855e27b331cf5b7a03ddebd2f8dd29 /modules/node/node.module | |
parent | 50641eafc0bfd321e09f71ab361dcf5c26469878 (diff) | |
download | brdo-001d54f663136894ce0dce0a09693cc107cfb788.tar.gz brdo-001d54f663136894ce0dce0a09693cc107cfb788.tar.bz2 |
#84961: Add 'select all' and range select feature to admin tables.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index ef0b949d2..2ce5863db 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1533,7 +1533,7 @@ function node_admin_nodes() { */ function theme_node_admin_nodes($form) { // Overview table: - $header = array(NULL, t('Title'), t('Type'), t('Author'), t('Status'), t('Operations')); + $header = array(theme('table_select_header_cell'), t('Title'), t('Type'), t('Author'), t('Status'), t('Operations')); $output .= drupal_render($form['options']); if (isset($form['title']) && is_array($form['title'])) { |