From: Jakub Vrana Date: Fri, 25 Oct 2013 05:26:25 +0000 (-0700) Subject: Add class name for results count X-Git-Tag: v4.0.0~34 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=9d2f3c870358373af1c3bb22f693dd131e6c3ee9;p=adminer.git Add class name for results count --- diff --git a/adminer/select.inc.php b/adminer/select.inc.php index 4e59429f..8b1579a5 100644 --- a/adminer/select.inc.php +++ b/adminer/select.inc.php @@ -468,7 +468,7 @@ if (!$columns && support("table")) { } } - echo "

\n"; + echo "

\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";