]> git.joonet.de Git - adminer.git/commitdiff
Display number of tables
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Mon, 2 Nov 2009 23:14:37 +0000 (23:14 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Mon, 2 Nov 2009 23:14:37 +0000 (23:14 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1226 7c3ca157-0c34-0410-bff1-cbf682f78f5c

adminer/db.inc.php
changes.txt

index c5f51dd8ab3a3d763edc04e3e967a70a831c8e43..e13363766f4caf1b7378611d9cffdc7ba07c427d 100644 (file)
@@ -48,7 +48,7 @@ if (!$table_status) {
 } else {
        echo "<form action='' method='post'>\n";
        echo "<table cellspacing='0' class='nowrap' onclick='table_click(event);'>\n";
-       echo '<thead><tr class="wrap"><td><input id="check-all" type="checkbox" onclick="form_check(this, /^(tables|views)\[/);"><th>' . lang('Table') . '<td>' . lang('Engine') . '<td>' . lang('Collation') . '<td>' . lang('Data Length') . '<td>' . lang('Index Length') . '<td>' . lang('Data Free') . '<td>' . lang('Auto Increment') . '<td>' . lang('Rows') . '<td>' . lang('Comment') . "</thead>\n";
+       echo '<thead><tr class="wrap"><td><input id="check-all" type="checkbox" onclick="form_check(this, /^(tables|views)\[/);" title="' . count($table_status) . '"><th>' . lang('Table') . '<td>' . lang('Engine') . '<td>' . lang('Collation') . '<td>' . lang('Data Length') . '<td>' . lang('Index Length') . '<td>' . lang('Data Free') . '<td>' . lang('Auto Increment') . '<td>' . lang('Rows') . '<td>' . lang('Comment') . "</thead>\n";
        foreach ($table_status as $row) {
                $name = $row["Name"];
                echo '<tr' . odd() . '><td>' . checkbox((isset($row["Rows"]) ? "tables[]" : "views[]"), $name, in_array($name, $tables_views, true), "", "form_uncheck('check-all');");
index f4554249dfa0c67ec1248c4a37c14ad9f54e7e9e..e8e71653b7902a6244613a4de04e944b3c93c3b2 100644 (file)
@@ -1,5 +1,6 @@
 Adminer 2.2.1-dev:
 Improve concurrency
+Move number of tables to DB info (performance)
 Link new item in backward keys (Editor)
 
 Adminer 2.2.0 (released 2009-10-20):