From 0c6811e4e6b5b4470a1387cad3514379da002586 Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Wed, 28 Oct 2009 12:14:38 +0000 Subject: [PATCH] Use odd (thanks to kozotoc) git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1217 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- adminer/table.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/table.inc.php b/adminer/table.inc.php index 034085d5..a3677f11 100644 --- a/adminer/table.inc.php +++ b/adminer/table.inc.php @@ -14,7 +14,7 @@ if ($fields) { echo "\n"; echo "\n"; foreach ($fields as $field) { - echo "
" . lang('Column') . "" . lang('Type') . "" . lang('Comment') . "
" . h($field["field"]); + echo "" . h($field["field"]); echo "" . h($field["full_type"]) . ($field["null"] ? " NULL" : "") . ($field["auto_increment"] ? " " . lang('Auto Increment') . "" : ""); echo "" . nbsp($field["comment"]); echo "\n";