bug #1418769 part 2, missing argument for PHP 4

This commit is contained in:
Marc Delisle
2006-02-08 18:26:33 +00:00
parent 5c736824c3
commit dee8d64c1c
2 changed files with 3 additions and 2 deletions

View File

@@ -7,7 +7,8 @@ $Source$
2006-02-08 Marc Delisle <lem9@users.sourceforge.net> 2006-02-08 Marc Delisle <lem9@users.sourceforge.net>
* libraries/Config.class.php: leave the possibility of having a * libraries/Config.class.php: leave the possibility of having a
backslash in the path on non-Windows system, thanks to Michal backslash in the path on non-Windows system, thanks to Michal;
and bug #1418769, part 2: missing argument (PHP 4 constructor)
2006-02-06 Michal Čihař <michal@cihar.com> 2006-02-06 Michal Čihař <michal@cihar.com>
* scripts/setup.php: Fix typos (bug #1424923). * scripts/setup.php: Fix typos (bug #1424923).

View File

@@ -476,7 +476,7 @@ class PMA_Config
* *
* @deprecated * @deprecated
*/ */
function PMA_Config($source) function PMA_Config($source = null)
{ {
$this->__construct($source); $this->__construct($source);
} }