summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 488cde59c..216e89a8c 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -1334,7 +1334,7 @@ function theme_node_filter_form($form) {
* Theme node administraton filter selector.
*/
function theme_node_filters($form) {
- $output .= '<ul>';
+ $output .= '<ul class="clear-block">';
if (sizeof($form['current'])) {
foreach (element_children($form['current']) as $key) {
$output .= '<li>' . drupal_render($form['current'][$key]) . '</li>';
@@ -1356,7 +1356,7 @@ function theme_node_filters($form) {
$output .= '</dl>';
$output .= '<div class="container-inline" id="node-admin-buttons">'. drupal_render($form['buttons']) .'</div>';
- $output .= '</li></ul><br class="clear" />';
+ $output .= '</li></ul>';
return $output;
}
@@ -2440,8 +2440,8 @@ function node_form_alter($form_id, &$form) {
$form['advanced']['submit'] = array(
'#type' => 'submit',
'#value' => t('Advanced search'),
- '#prefix' => '<div class="action">',
- '#suffix' => '</div><br class="clear" />',
+ '#prefix' => '<div class="action clear-block">',
+ '#suffix' => '</div>',
);
$form['#validate']['node_search_validate'] = array();