#676800 follow-up by sun: More fieldset fixes.
parent
515137f1e9
commit
8894138027
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue