From 1b97f48ea8b7f9aae30337fc11a3097a6a718c01 Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Mon, 18 May 2009 10:27:49 +0000 Subject: [PATCH] Reset odd() for each result git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@606 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- functions.inc.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/functions.inc.php b/functions.inc.php index 456f76d4..ebe761df 100644 --- a/functions.inc.php +++ b/functions.inc.php @@ -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 "";