summaryrefslogtreecommitdiff
path: root/includes/pager.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-31 18:12:26 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-31 18:12:26 +0000
commit534c89f21e46116d1a627057158ca1fd02b129a6 (patch)
tree4bc674fe011e720037d2c53f1cd8d4b3d178adb2 /includes/pager.inc
parent66b7e4f95a702c066e18ca75e73f48f5eabb2971 (diff)
downloadbrdo-534c89f21e46116d1a627057158ca1fd02b129a6.tar.gz
brdo-534c89f21e46116d1a627057158ca1fd02b129a6.tar.bz2
- Patch #321023 by Everett Zufelt, mgifford: improve accesibility in pager.inc.
Diffstat (limited to 'includes/pager.inc')
-rw-r--r--includes/pager.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/pager.inc b/includes/pager.inc
index f9c477a08..21331ba03 100644
--- a/includes/pager.inc
+++ b/includes/pager.inc
@@ -308,7 +308,7 @@ function theme_pager($variables) {
'data' => $li_last,
);
}
- return theme('item_list', array('items' => $items, 'title' => NULL, 'type' => 'ul', 'attributes' => array('class' => array('pager'))));
+ return '<h2 class="element-invisible">' . t('Pages') . '</h2>' . theme('item_list', array('items' => $items, 'title' => NULL, 'type' => 'ul', 'attributes' => array('class' => array('pager'))));
}
}