Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2014-02-05 14:20:48 +01:00
commit 6876196d12
2 changed files with 4 additions and 6 deletions

View File

@ -229,9 +229,6 @@ $response->addHTML('</div>');
if (! $tbl_is_view && ! $db_is_system_schema) {
$response->addHTML('<br />');
$response->addHTML(PMA_getHtmlForAddColumn($columns_list));
$response->addHTML(
'<div id="index_div" class="ajax" >'
);
}
/**

View File

@ -1803,9 +1803,7 @@ function getHtmlForRowStatsTable($showtable, $tbl_collation,
);
}
$html_output .= '</tbody>'
. '</table>'
. '</fieldset>'
. '</div>';
. '</table>';
return $html_output;
}
@ -2234,6 +2232,9 @@ function PMA_getHtmlForDisplayTableStats($showtable, $table_info_num_rows,
(isset ($avg_size) ? $avg_size : ''),
(isset ($avg_unit) ? $avg_unit : '')
);
$html_output .= '</fieldset>'
. '</div>';
return $html_output;
}