Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-12-21 12:45:52 +0300
committerMichal Čihař <michal@cihar.com>2016-12-21 12:45:52 +0300
commit6f01864e8957f57a83a87f368a06a48f1b57e82c (patch)
tree7acb14e513dd993712c821a751399aea4524baa4 /js/tbl_structure.js
parentc8a15f22123cebd6ba939bab222091c14de8fce2 (diff)
Fixed moving of columns with whitespace in name
Fixes #12841 Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'js/tbl_structure.js')
-rw-r--r--js/tbl_structure.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tbl_structure.js b/js/tbl_structure.js
index 279bb42d09..672fb01329 100644
--- a/js/tbl_structure.js
+++ b/js/tbl_structure.js
@@ -354,7 +354,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);