From 37fcdec814b4c3aa6d4cba7a0599adf0c307fcca Mon Sep 17 00:00:00 2001 From: dereine Date: Mon, 16 Jul 2012 09:52:39 +0200 Subject: [PATCH] Issue #1541040 by dawehner | hiddenfellon: Fixed Reorder Display issue. --- includes/admin.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/admin.inc b/includes/admin.inc index d40280bda4fd..b6758370161f 100644 --- a/includes/admin.inc +++ b/includes/admin.inc @@ -3196,11 +3196,13 @@ function theme_views_ui_reorder_displays_form($vars) { drupal_add_tabledrag('reorder-displays', 'order', 'sibling', 'weight'); $output = drupal_render($form['override']); + $output .= '
'; $output .= theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => array('id' => 'reorder-displays'), )); + $output .= '
'; $output .= drupal_render_children($form); return $output;