From ea4eba4761b5ecd63575039d9714a15a478ae38e Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 1 Jun 2011 10:48:07 +0200 Subject: [PATCH] Display default column value in tooltip (thanks to bene) --- adminer/table.inc.php | 2 +- changes.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/adminer/table.inc.php b/adminer/table.inc.php index be17a00d..516b0bf1 100644 --- a/adminer/table.inc.php +++ b/adminer/table.inc.php @@ -17,7 +17,7 @@ if ($fields) { echo "\n"; echo "\n"; foreach ($fields as $field) { - echo "
" . lang('Column') . "" . lang('Type') . (support("comment") ? "" . lang('Comment') : "") . "
" . h($field["field"]); + echo "" . h($field["field"]); echo "" . h($field["full_type"]) . ($field["null"] ? " NULL" : "") . ($field["auto_increment"] ? " " . lang('Auto Increment') . "" : ""); echo (support("comment") ? "" . nbsp($field["comment"]) : ""); echo "\n"; diff --git a/changes.txt b/changes.txt index 5801ba42..53a020c3 100644 --- a/changes.txt +++ b/changes.txt @@ -3,6 +3,8 @@ Use Esc to disable in-place edit Highlight SQL code in textarea Append new index with auto index selection (bug #3282127) Bit type default value +Display foreign key name in tooltip +Display default column value in tooltip Pagination support (Oracle) Autocomplete for big foreign keys (Editor) Display name of the referenced record in PostgreSQL (Editor)