]> git.joonet.de Git - adminer.git/commitdiff
Add class name for results count
authorJakub Vrana <jakub@vrana.cz>
Fri, 25 Oct 2013 05:26:25 +0000 (22:26 -0700)
committerJakub Vrana <jakub@vrana.cz>
Fri, 25 Oct 2013 05:26:25 +0000 (22:26 -0700)
adminer/select.inc.php

index 4e59429f0a0b2fabf8546d2f3054d99b332bf761..8b1579a5d279a9711a2cf3a6d8ed847713a126c8 100644 (file)
@@ -468,7 +468,7 @@ if (!$columns && support("table")) {
                                }
                        }
 
-                       echo "<p>\n";
+                       echo "<p class='count'>\n";
                        echo ($found_rows !== false ? "(" . ($exact_count ? "" : "~ ") . lang('%d row(s)', $found_rows) . ") " : "");
                        $display_rows = ($exact_count ? "" : "~ ") . $found_rows;
                        echo checkbox("all", 1, 0, lang('whole result'), "var checked = formChecked(this, /check/); selectCount('selected', this.checked ? '$display_rows' : checked); selectCount('selected2', this.checked || !checked ? '$display_rows' : checked);") . "\n";