From 708a4e94942a1bacd3e195b3c5434e9a7b529326 Mon Sep 17 00:00:00 2001 From: Denitz <197527+Denitz@users.noreply.github.com> Date: Tue, 25 Feb 2025 14:22:46 +0300 Subject: [PATCH] Update table-structure.php --- plugins/table-structure.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 "
\n"; echo "\n"; - echo "\n"; + echo "\n"; foreach ($fields as $field) { 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"]) : "");