Skip to content
Snippets Groups Projects
Commit 8d74e4c1 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #87995 by merlinofchaos: added missing css.

parent b32f8a91
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ function theme_pager($tags = array(), $limit = 10, $element = 0, $parameters = a
$output = '';
if ($pager_total[$element] > 1) {
$output .= '<div id="pager">';
$output .= '<div class="pager">';
$output .= theme('pager_first', ($tags[0] ? $tags[0] : t('« first')), $limit, $element, $parameters);
$output .= theme('pager_previous', ($tags[1] ? $tags[1] : t('‹ previous')), $limit, $element, 1, $parameters);
$output .= theme('pager_list', $limit, $element, ($tags[2] ? $tags[2] : 9 ), '', $parameters);
......
.indented {
margin-left: 25px;
}
......@@ -1934,7 +1934,7 @@ function theme_user_admin_new_role($form) {
$header = array(t('Name'), array('data' => t('Operations'), 'colspan' => 2));
foreach (user_roles() as $rid => $name) {
if (!in_array($rid, array(DRUPAL_ANONYMOUS_RID, DRUPAL_AUTHENTICATED_RID))) {
$rows[] = array($name, l(t('edit'), 'admin/user/access/'. $rid), l(t('rename'), 'admin/user/roles/edit/'. $rid));
$rows[] = array($name, l(t('edit permissions'), 'admin/user/access/'. $rid), l(t('edit role'), 'admin/user/roles/edit/'. $rid));
}
else {
$rows[] = array($name, array('data' => t('locked'), 'colspan' => 2));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment