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/comment/comment.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/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 1873c1b84..8ba74e689 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1044,7 +1044,7 @@ function comment_admin_overview($type = 'new', $arg) { // load the comments that we want to display $status = ($type == 'approval') ? COMMENT_NOT_PUBLISHED : COMMENT_PUBLISHED; $form['header'] = array('#type' => 'value', '#value' => array( - NULL, + theme('table_select_header_cell'), array('data' => t('Subject'), 'field' => 'subject'), array('data' => t('Author'), 'field' => 'name'), array('data' => t('Time'), 'field' => 'timestamp', 'sort' => 'desc'), |