From fd5f49d3feb8a4357bb55f8c40857e3f5f3759fb Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 8 Sep 2010 10:43:08 +0200 Subject: [PATCH] Display comment in table overview --- adminer/table.inc.php | 4 ++++ changes.txt | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/adminer/table.inc.php b/adminer/table.inc.php index 50ab0cd0..59901c28 100644 --- a/adminer/table.inc.php +++ b/adminer/table.inc.php @@ -8,6 +8,10 @@ $table_status = ($fields ? table_status($TABLE) : array()); page_header(($fields && is_view($table_status) ? lang('View') : lang('Table')) . ": " . h($TABLE), $error); $adminer->selectLinks($table_status); +$comment = $table_status["Comment"]; +if ($comment != "") { + echo "

" . lang('Comment') . ": " . h($comment) . "\n"; +} if ($fields) { echo "\n"; diff --git a/changes.txt b/changes.txt index c445a6f0..d537b72b 100644 --- a/changes.txt +++ b/changes.txt @@ -15,7 +15,8 @@ Disable spellchecking in SQL textareas Display auto_increment value of inserted item Allow disabling auto_increment value export Prefill auto_increment column name -Ability to jump to any page by JavaScript +Ability to jump to any page in select by JavaScript +Display comment in table overview Link last page above data in select Link table names in SQL queries Japanese translation -- 2.39.5