From dee8d64c1c8d0ce594c64b294e08300861dbcaf8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 8 Feb 2006 18:26:33 +0000 Subject: [PATCH] bug #1418769 part 2, missing argument for PHP 4 --- ChangeLog | 3 ++- libraries/Config.class.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c23bf9bae..e83a4cd9b 100755 --- a/ChangeLog +++ b/ChangeLog @@ -7,7 +7,8 @@ $Source$ 2006-02-08 Marc Delisle * 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ř * scripts/setup.php: Fix typos (bug #1424923). diff --git a/libraries/Config.class.php b/libraries/Config.class.php index c933284fd..e5d78b0ef 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -476,7 +476,7 @@ class PMA_Config * * @deprecated */ - function PMA_Config($source) + function PMA_Config($source = null) { $this->__construct($source); }