- Patch #321023 by Everett Zufelt, mgifford: improve accesibility in pager.inc.

merge-requests/26/head
Dries Buytaert 2009-10-31 18:12:26 +00:00
parent 66b7e4f95a
commit 534c89f21e
1 changed files with 1 additions and 1 deletions

View File

@ -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'))));
}
}