From cbeaf157af49b812007074d73dfe617188800dce Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 6 Oct 2008 14:38:02 +0000 Subject: - Patch #308668 by jpetso, boombatower: make test selection page work when Javascript is disabled. --- modules/simpletest/simpletest.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/simpletest/simpletest.module') diff --git a/modules/simpletest/simpletest.module b/modules/simpletest/simpletest.module index ff338b12f..f2e547fcd 100644 --- a/modules/simpletest/simpletest.module +++ b/modules/simpletest/simpletest.module @@ -229,7 +229,7 @@ function theme_simpletest_test_table($table) { // Expand/collapse image and group title. $row[] = array( - 'data' => '
' . $js['images'][0] . '
 ' . + 'data' => '
 ' . '', 'style' => 'font-weight: bold;' ); @@ -258,7 +258,7 @@ function theme_simpletest_test_table($table) { $row[] = drupal_render($test); $row[] = theme('indentation', 1) . ''; $row[] = '
' . $description . '
'; - $rows[] = array('data' => $row, 'style' => 'display: none;', 'class' => $test_class . '-test'); + $rows[] = array('data' => $row, 'class' => $test_class . '-test js-hide'); } $js['simpletest-test-group-'. $test_class] = $current_js; unset($table[$key]); -- cgit v1.2.3