undefined index (innodb)
This commit is contained in:
@@ -9,6 +9,8 @@ $Source$
|
|||||||
* db_details.php3, read_dump.php3, libraries/functions.js, lang/*,
|
* db_details.php3, read_dump.php3, libraries/functions.js, lang/*,
|
||||||
config.inc.php3, Documentation.html: web-based upload directory,
|
config.inc.php3, Documentation.html: web-based upload directory,
|
||||||
thanks to S<>nke J. Peters (s03nk3)
|
thanks to S<>nke J. Peters (s03nk3)
|
||||||
|
* tbl_properties_structure.php3: undefined index for innodb,
|
||||||
|
thanks to Lo<4C>c
|
||||||
|
|
||||||
2002-08-21 Alexander M. Turek <rabus@users.sourceforge.net>
|
2002-08-21 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||||
* Documentation.html: Updated FAQ 1.6.
|
* Documentation.html: Updated FAQ 1.6.
|
||||||
|
@@ -295,7 +295,7 @@ require ('./tbl_indexes.php3');
|
|||||||
// statistics whatever is the table type
|
// statistics whatever is the table type
|
||||||
if ($cfg['ShowStats']) {
|
if ($cfg['ShowStats']) {
|
||||||
$nonisam = FALSE;
|
$nonisam = FALSE;
|
||||||
$is_innodb = ($showtable['Type'] == 'InnoDB');
|
$is_innodb = (isset($showtable['Type']) && $showtable['Type'] == 'InnoDB');
|
||||||
if (isset($showtable['Type']) && !eregi('ISAM|HEAP', $showtable['Type'])) {
|
if (isset($showtable['Type']) && !eregi('ISAM|HEAP', $showtable['Type'])) {
|
||||||
$nonisam = TRUE;
|
$nonisam = TRUE;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user