diff --git a/ChangeLog b/ChangeLog index 2a60fbea0..9d5723f78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -99,6 +99,7 @@ $Id$ - bug #3011126 [display] Edit link missing after long query - patch #3013264 [doc] FAQ 1.40 uses a comma instead of a period, thanks to Isaac Bennetch - ibennetch +- [engines] Fix getting InnoDB status. 3.3.3.0 (2010-05-10) - patch #2982480 [navi] Do not group if there would be one table in group, diff --git a/libraries/engines/innodb.lib.php b/libraries/engines/innodb.lib.php index e3dd18315..d71d5a0ef 100644 --- a/libraries/engines/innodb.lib.php +++ b/libraries/engines/innodb.lib.php @@ -305,7 +305,7 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine function getPageStatus() { return '
' . "\n" - . htmlspecialchars(PMA_DBI_fetch_value('SHOW INNODB STATUS;')) . "\n" + . htmlspecialchars(PMA_DBI_fetch_value('SHOW INNODB STATUS;', 0, 'Status')) . "\n" . '' . "\n"; }