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
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -114,7 +114,7 @@ function theme_pager($tags = array(), $limit = 10, $element = 0, $parameters = a ...@@ -114,7 +114,7 @@ function theme_pager($tags = array(), $limit = 10, $element = 0, $parameters = a
$output = ''; $output = '';
if ($pager_total[$element] > 1) { 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_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_previous', ($tags[1] ? $tags[1] : t('‹ previous')), $limit, $element, 1, $parameters);
$output .= theme('pager_list', $limit, $element, ($tags[2] ? $tags[2] : 9 ), '', $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) { ...@@ -1934,7 +1934,7 @@ function theme_user_admin_new_role($form) {
$header = array(t('Name'), array('data' => t('Operations'), 'colspan' => 2)); $header = array(t('Name'), array('data' => t('Operations'), 'colspan' => 2));
foreach (user_roles() as $rid => $name) { foreach (user_roles() as $rid => $name) {
if (!in_array($rid, array(DRUPAL_ANONYMOUS_RID, DRUPAL_AUTHENTICATED_RID))) { 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 { else {
$rows[] = array($name, array('data' => t('locked'), 'colspan' => 2)); $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