Skip to content

Commit

Permalink
Merge branch 'QA_4_4'
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuracj committed Apr 30, 2015
2 parents cb9671d + f07fc44 commit e3a3d1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ phpMyAdmin - ChangeLog
- bug Fix resize icon in Designer
- bug #4879 Exit fullscreen in Designer does not change the button text
- bug #4880 Designer icons missing when using original theme
- bug #4878 Column list of central columns is not cleared

4.4.4.0 (2015-04-26)
- bug #4863 Edit vs Change
Expand Down
4 changes: 2 additions & 2 deletions js/db_central_columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ AJAX.registerOnload('db_central_columns.js', function () {
});
$('#table-select').change(function(e) {
var selectvalue = $(this).val();
var default_column_select = $('#column-select').html();
var default_column_select = $('#column-select option:first');
var href = "db_central_columns.php";
var params = {
'ajax_request' : true,
Expand All @@ -198,7 +198,7 @@ AJAX.registerOnload('db_central_columns.js', function () {
$('#column-select').html('<option value="">' + PMA_messages.strLoading + '</option>');
if (selectvalue !== "") {
$.post(href, params, function (data) {
$('#column-select').html(default_column_select);
$('#column-select').empty().append(default_column_select);
$('#column-select').append(data.message);
});
}
Expand Down

0 comments on commit e3a3d1a

Please sign in to comment.