From 73e7e00c778a5729a4d6a71e9630c7a61198b738 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 18 Mar 2025 09:25:08 +0100 Subject: [PATCH] fieldName: Display : before comment only with type --- adminer/include/adminer.inc.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/adminer/include/adminer.inc.php b/adminer/include/adminer.inc.php index 901e3a12..5d68ca9d 100644 --- a/adminer/include/adminer.inc.php +++ b/adminer/include/adminer.inc.php @@ -172,7 +172,9 @@ class Adminer { * @return string HTML code, "" to ignore field */ function fieldName($field, $order = 0) { - return '' . h($field["field"]) . ''; + $type = $field["full_type"]; + $comment = $field["comment"]; + return '' . h($field["field"]) . ''; } /** Print links after select heading