1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-10 08:34:20 +02:00

Display comment in table overview

This commit is contained in:
Jakub Vrana
2010-09-08 10:43:08 +02:00
parent 931f805bd3
commit fd5f49d3fe
2 changed files with 6 additions and 1 deletions

View File

@@ -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 "<p>" . lang('Comment') . ": " . h($comment) . "\n";
}
if ($fields) {
echo "<table cellspacing='0'>\n";