Reset odd() for each result

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@606 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2009-05-18 10:27:49 +00:00
parent 5ef9322616
commit 1b97f48ea8

View file

@ -138,9 +138,9 @@ function get_file($key) {
function odd($s = ' class="odd"') {
static $i = 0;
if (!$s) { // reset counter
$i = 0;
$i = -1;
}
return (++$i % 2 ? $s : '');
return ($i++ % 2 ? $s : '');
}
function select($result) {
@ -154,6 +154,7 @@ function select($result) {
$columns = array();
$blobs = array();
$types = array();
odd('');
for ($i=0; $row = $result->fetch_row(); $i++) {
if (!$i) {
echo "<thead><tr>";