<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 5.50.4807.2300" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2>I noticed that my row count displayed was incorrect for 
InnoDB tables as opposed to a SELECT COUNT(*).</FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV><FONT size=2>--Josh</FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV><FONT size=2>--- 
../phpMyAdmin/db_details.php        Tue Feb 
19 18:35:40 2002<BR>+++ db_details.php      Wed Feb 20 
16:37:13 2002<BR>@@ -278,8 +278,10 
@@<BR>             
echo "\n" . '        
';<BR>             
if ($mergetable == TRUE) 
{<BR>                 
echo '<i>' . number_format($sts_data['Rows'], 0, 
$number_decimal_separator, $number_thousands_separator) . '</i>' 
.<BR> "\n";<BR>-            
} else {<BR>+            
} elseif($nonisam == FALSE) 
{<BR>                 
echo number_format($sts_data['Rows'], 0, $number_decimal_separator, 
$number_thousands_separator) . 
"\n";<BR>+            } 
else 
{<BR>+                
echo 
"-";<BR>             
}<BR>             
?><BR>     </td></FONT></DIV></BODY></HTML>