diff --git a/plugins/table-structure.php b/plugins/table-structure.php index 3e9fd35f..1db0b0d6 100644 --- a/plugins/table-structure.php +++ b/plugins/table-structure.php @@ -15,12 +15,12 @@ class AdminerTableStructure { function tableStructurePrint($fields) { echo "
| " . lang('Column') . " | " . lang('Type') . " | " . lang('Nullable') . " | " . lang('Default') . (support("comment") ? " | " . lang('Comment') : "") . " | |
|---|---|---|---|---|---|
| " . lang('Column') . " | " . lang('Type') . " | " . lang('Collation') . " | " . lang('Nullable') . " | " . lang('Default') . (support("comment") ? " | " . lang('Comment') : "") . " |
| " . h($field["field"]) . ($field["primary"] ? " (PRIMARY)" : ""); echo " | " . h($field["full_type"]) . ""; echo ($field["auto_increment"] ? " " . lang('Auto Increment') . "" : ""); - echo ($field["collation"] ? " " . h($field["collation"]) . "" : ""); + echo " | " . ($field["collation"] ? " " . h($field["collation"]) . "" : ""); echo " | " . ($field["null"] ? lang('Yes') : lang('No')); echo " | " . h($field["default"]); echo (support("comment") ? " | " . h($field["comment"]) : ""); |