diff --git a/adminer/db.inc.php b/adminer/db.inc.php index 8ecec802..bcc98999 100644 --- a/adminer/db.inc.php +++ b/adminer/db.inc.php @@ -54,7 +54,9 @@ if ($adminer->homepage()) { echo "

" . lang('No tables.') . "\n"; } else { echo "

\n"; - echo "

" . lang('Search data in tables') . ": \n"; + echo "

" . lang('Search data in tables') . "
"; + echo " \n"; + echo "
\n"; if ($_POST["search"] && $_POST["query"] != "") { search_tables(); } @@ -72,6 +74,7 @@ if ($adminer->homepage()) { echo (support("comment") ? '' . lang('Comment') : ''); echo "\n"; + $tables = 0; foreach ($tables_list as $name => $type) { $view = ($type !== null && !eregi("table", $type)); echo '' . checkbox(($view ? "views[]" : "tables[]"), $name, in_array($name, $tables_views, true), "", "formUncheck('check-all');"); @@ -95,6 +98,7 @@ if ($adminer->homepage()) { : "?" ) : " "); } + $tables++; } echo (support("comment") ? " " : ""); } @@ -122,7 +126,7 @@ if ($adminer->homepage()) { echo (support("copy") ? " " : ""); echo "\n"; } - echo "\n"; // used by trCheck() + echo "\n"; // used by trCheck() echo "\n"; echo "\n"; }