undefined

This commit is contained in:
Marc Delisle
2003-04-11 17:53:34 +00:00
parent bbc10b2dba
commit 4733f97af5
2 changed files with 2 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ $Source$
2003-04-11 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php3, config_import.lib.php3:
MaxExactCount backwards compatibility
* db_details_structure.php3: undefined $row_count for InnoDB tables
2003-04-11 Michal Cihar <nijel@users.sourceforge.net>
* db_details_structure.php3: Get row count by SHOW TABLE STATUS, and by

View File

@@ -249,6 +249,7 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
$row_count = PMA_mysql_result($table_info_result, 0, 'count');
$sum_entries += $row_count;
} else {
$row_count = 0;
$sum_entries += $sts_data['Rows'];
}
$display_rows = number_format($row_count, 0, $number_decimal_separator, $number_thousands_separator);