summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-05-19 19:22:24 +0000
committerDries Buytaert <dries@buytaert.net>2010-05-19 19:22:24 +0000
commit725481d71ba1151101b6a4f518cfeaf230d88bcc (patch)
tree508fe027cb4163f231e04e23b7d18739bd26a120 /modules
parent63dba2a07da80609306e9e09e88cc989bbd71de6 (diff)
downloadbrdo-725481d71ba1151101b6a4f518cfeaf230d88bcc.tar.gz
brdo-725481d71ba1151101b6a4f518cfeaf230d88bcc.tar.bz2
- Patch #768490 by JohnAlbin, sign: theme_table_select_header_cell() is not really a theme function.
Diffstat (limited to 'modules')
-rw-r--r--modules/simpletest/simpletest.pages.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/simpletest/simpletest.pages.inc b/modules/simpletest/simpletest.pages.inc
index 0fff1889c..49bf3ec57 100644
--- a/modules/simpletest/simpletest.pages.inc
+++ b/modules/simpletest/simpletest.pages.inc
@@ -71,10 +71,11 @@ function theme_simpletest_test_table($variables) {
drupal_add_css(drupal_get_path('module', 'simpletest') . '/simpletest.css');
drupal_add_js(drupal_get_path('module', 'simpletest') . '/simpletest.js');
+ drupal_add_js('misc/tableselect.js');
// Create header for test selection table.
$header = array(
- theme('table_select_header_cell'),
+ array('class' => array('select-all')),
array('data' => t('Test'), 'class' => array('simpletest_test')),
array('data' => t('Description'), 'class' => array('simpletest_description')),
);