summaryrefslogtreecommitdiff
path: root/modules/simpletest/simpletest.pages.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-07 05:36:57 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-07 05:36:57 +0000
commit32fc5ac8359b1db9533708e212f29369ff18543c (patch)
treeecbac300108e09072680c98190184a9a67b64fca /modules/simpletest/simpletest.pages.inc
parent66c63ff3e2be461b9edf1775c7ffffca74c8efde (diff)
downloadbrdo-32fc5ac8359b1db9533708e212f29369ff18543c.tar.gz
brdo-32fc5ac8359b1db9533708e212f29369ff18543c.tar.bz2
#567192 by mgifford: Fixed Expanding simpletest groups not accessible via keyboard.
Diffstat (limited to 'modules/simpletest/simpletest.pages.inc')
-rw-r--r--modules/simpletest/simpletest.pages.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/simpletest/simpletest.pages.inc b/modules/simpletest/simpletest.pages.inc
index 990760497..c92926131 100644
--- a/modules/simpletest/simpletest.pages.inc
+++ b/modules/simpletest/simpletest.pages.inc
@@ -83,8 +83,8 @@ function theme_simpletest_test_table($variables) {
// Define the images used to expand/collapse the test groups.
$js = array(
'images' => array(
- theme('image', array('path' => 'misc/menu-collapsed.png', 'alt' => 'Expand', 'title' => 'Expand')),
- theme('image', array('path' => 'misc/menu-expanded.png', 'alt' => 'Collapsed', 'title' => 'Collapsed')),
+ theme('image', array('path' => 'misc/menu-collapsed.png', 'alt' => t('Expand'), 'title' => t('Expand'))) . ' <a href="#" class="simpletest-collapse">(' . t('Expand') . ')</a>',
+ theme('image', array('path' => 'misc/menu-expanded.png', 'alt' => t('Collapse'), 'title' => t('Collapse'))) . ' <a href="#" class="simpletest-collapse">(' . t('Collapse') . ')</a>',
),
);