From 70ce02a7980404c745f4d9a65059430a3b9fde65 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Fri, 18 Apr 2025 14:59:59 +0200 Subject: [PATCH] AdminerTableIndexesStructure: Print algorithm --- plugins/table-indexes-structure.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/table-indexes-structure.php b/plugins/table-indexes-structure.php index 5c3f7f92..e7013cb1 100644 --- a/plugins/table-indexes-structure.php +++ b/plugins/table-indexes-structure.php @@ -10,9 +10,9 @@ class AdminerTableIndexesStructure extends Adminer\Plugin { function tableIndexesPrint($indexes, $tableStatus): bool { echo "\n"; - echo "\n"; + echo "\n"; foreach ($indexes as $name => $index) { - echo "
" . Adminer\lang('Name') . "" . Adminer\lang('Type') . "" . Adminer\lang('Columns') . "
" . Adminer\lang('Name') . "" . Adminer\lang('Type') . "" . Adminer\lang('Algorithm') . "" . Adminer\lang('Columns') . "
" . Adminer\h($name) . "" . $index['type']; + echo "
" . Adminer\h($name) . "$index[type]$index[algorithm]"; ksort($index["columns"]); // enforce correct columns order $print = array(); foreach ($index["columns"] as $key => $val) {