bug #1434578, missing argument for __construct()

This commit is contained in:
Marc Delisle
2006-02-19 15:36:55 +00:00
parent 4532d8d0b0
commit b8976c10c5
2 changed files with 3 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ $Source$
2006-02-19 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php: re-establish previous error reporting mode
* sql.php: bug #1434576, undefined variable $db
* libraries/storage_engines.lib.php: bug #1434578, missing argument
for __construct()
2006-02-19 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* libraries/common.lib.php PMA_getUvaCondition():

View File

@@ -206,7 +206,7 @@ class PMA_StorageEngine
*/
function PMA_StorageEngine($engine)
{
$this->__construct();
$this->__construct($engine);
}
/**