commit 8aa0c1a2556a36ad00731c6f7b69625565ccb667 Author: Joel Pittet Date: Sat Mar 9 21:08:41 2013 -0800 1898452 diff --git a/core/modules/simpletest/simpletest.pages.inc b/core/modules/simpletest/simpletest.pages.inc index f540442..ffc1874 100644 --- a/core/modules/simpletest/simpletest.pages.inc +++ b/core/modules/simpletest/simpletest.pages.inc @@ -169,7 +169,7 @@ function template_preprocess_simpletest_test_table(&$variables) { drupal_add_js(array('simpleTest' => $js), 'setting'); $variables['table'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => t('No tests to display.'), @@ -275,7 +275,7 @@ function simpletest_result_form($form, &$form_state, $test_id) { $form['result']['summary']['#' . $assertion->status]++; } $form['result']['results'][$group]['table'] = array( - '#theme' => 'table', + '#type' => 'table', '#header' => $header, '#rows' => $rows, );