Merge branch 'QA_4_6'

This commit is contained in:
Michal Čihař 2016-12-21 10:46:07 +01:00
commit 621804f211
2 changed files with 2 additions and 1 deletions

View File

@ -63,6 +63,7 @@ phpMyAdmin - ChangeLog
- issue #12826 Honor user configured connection collation
- issue #12293 Correctly report OpenSSL errors from cookie encryption
- issue #12814 DateTime won't allow to input length in Routine editor
- issue #12841 Fixed moving of columns with whitespace in name
4.6.5.2 (2016-12-05)
- issue #12765 Fixed SQL export with newlines

View File

@ -364,7 +364,7 @@ AJAX.registerOnload('tbl_structure.js', function () {
for (var i in data.columns) {
var the_column = data.columns[i];
var $the_row = $rows
.find("input:checkbox[value=" + the_column + "]")
.find("input:checkbox[value='" + the_column + "']")
.closest("tr");
// append the row for this column to the table
$fields_table.append($the_row);