#676800 follow-up by sun: More fieldset fixes.

merge-requests/26/head
Angie Byron 2010-03-07 06:49:10 +00:00
parent 515137f1e9
commit 8894138027
2 changed files with 8 additions and 0 deletions

View File

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

View File

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