diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-03-07 06:49:10 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-03-07 06:49:10 +0000 |
commit | 8894138027b3cdecb834598cb05a3daef7c5b5eb (patch) | |
tree | a560a4ea417893ac272e4e3780ad3d0f54fbbf9b | |
parent | 515137f1e9310ca5789a3803cbd5ffde5f25909c (diff) | |
download | brdo-8894138027b3cdecb834598cb05a3daef7c5b5eb.tar.gz brdo-8894138027b3cdecb834598cb05a3daef7c5b5eb.tar.bz2 |
#676800 follow-up by sun: More fieldset fixes.
-rw-r--r-- | modules/node/node.admin.inc | 4 | ||||
-rw-r--r-- | modules/user/user.admin.inc | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/modules/node/node.admin.inc b/modules/node/node.admin.inc index ad982dedf..4dd932307 100644 --- a/modules/node/node.admin.inc +++ b/modules/node/node.admin.inc @@ -220,6 +220,8 @@ function theme_node_filters($variables) { } $output .= '</ul>'; + $output .= '<div class="clearfix">'; + $output .= '<dl class="multiselect">' . (!empty($form['current']) ? '<dt><em>' . t('and') . '</em> ' . t('where') . '</dt>' : ''); $output .= '<dd>'; @@ -232,6 +234,8 @@ function theme_node_filters($variables) { $output .= '</dl>'; $output .= drupal_render($form['actions']); + $output .= '</div>'; + return $output; } diff --git a/modules/user/user.admin.inc b/modules/user/user.admin.inc index 1a6f7ca3d..09e3c554e 100644 --- a/modules/user/user.admin.inc +++ b/modules/user/user.admin.inc @@ -897,6 +897,8 @@ function theme_user_filters($variables) { } $output .= '</ul>'; + $output .= '<div class="clearfix">'; + $output .= '<dl class="multiselect">' . (!empty($form['current']) ? '<dt><em>' . t('and') . '</em> ' . t('where') . '</dt>' : ''); $output .= '<dd>'; @@ -909,5 +911,7 @@ function theme_user_filters($variables) { $output .= '</dl>'; $output .= drupal_render($form['actions']); + $output .= '</div>'; + return $output; } |