Fix bug 4105: More disappears in table Structure

This commit is contained in:
Atul Pratap Singh 2013-10-01 11:45:38 +05:30
parent 4341115ece
commit 37eccc8e42
2 changed files with 2 additions and 3 deletions

View File

@ -16,6 +16,7 @@ phpMyAdmin - ChangeLog
- bug #4074 GIS column editor: point not displayed
- bug #4109 Drizzle tables in navigation are shown as views
- bug #4095 NUL symbols added to the end of database dump file
- bug #4105 More disappears in table Structure
4.0.7.0 (2013-09-23)
- bug #3993 Sorting in database overview with statistics doesn't work

View File

@ -67,6 +67,7 @@ AJAX.registerOnload('tbl_structure.js', function() {
.append(data.sql_query)
.show();
$("#result_query .notice").remove();
reloadFieldForm();
$form.remove();
PMA_ajaxRemoveMessage($msg);
PMA_reloadNavigation();
@ -362,9 +363,6 @@ function reloadFieldForm(message) {
$("#moveColumns").removeClass("move-active");
/* reinitialise the more options in table */
$('#fieldsForm ul.table-structure-actions').menuResizer(PMA_tbl_structure_menu_resizer_callback);
setTimeout(function() {
PMA_ajaxShowMessage(message);
}, 500);
});
$('#page_content').show();
}