From 6d0351ec7c394102be5cfa6394a1f13859af3a9e Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sat, 9 Aug 2025 07:28:04 +0200 Subject: [PATCH] Autofocus added field in alter table --- CHANGELOG.md | 1 + adminer/include/editing.inc.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cef5662..05d09d6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Display @ after username without server in existing logins - Display data length and index length for materialized views - Link routines from syntax highlighting +- Autofocus added field in alter table - MySQL 5.0-: Do not load partitioning info in alter table (bug #1099) - MariaDB: Parse COLLATE in routine definition (bug #1104) - PostgreSQL: Show structure of inherited tables diff --git a/adminer/include/editing.inc.php b/adminer/include/editing.inc.php index 19752c17..78a436c7 100644 --- a/adminer/include/editing.inc.php +++ b/adminer/include/editing.inc.php @@ -314,7 +314,7 @@ function edit_fields(array $fields, array $collations, $type = "TABLE", array $f echo "\n"; echo ($type == "PROCEDURE" ? "" . html_select("fields[$i][inout]", explode("|", driver()->inout), $field["inout"]) : "") . ""; if ($display) { - echo ""; + echo ""; } echo input_hidden("fields[$i][orig]", $orig); edit_type("fields[$i]", $field, $collations, $foreign_keys);