Issue #1541040 by dawehner | hiddenfellon: Fixed Reorder Display issue.

8.0.x
dereine 2012-07-16 09:52:39 +02:00 committed by Tim Plunkett
parent cd5adcf78e
commit 37fcdec814
1 changed files with 2 additions and 0 deletions

View File

@ -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 .= '<div class="scroll">';
$output .= theme('table',
array('header' => $header,
'rows' => $rows,
'attributes' => array('id' => 'reorder-displays'),
));
$output .= '</div>';
$output .= drupal_render_children($form);
return $output;