bug #1418769 part 1: stat failed for ./config.inc.php (under PHP 4)
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2006-02-23 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* libraries/Config.class.php: bug #1418769 part 1: stat failed for
|
||||||
|
./config.inc.php (under PHP 4)
|
||||||
|
|
||||||
2006-02-22 Marc Delisle <lem9@users.sourceforge.net>
|
2006-02-22 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/display_tbl.lib.php: bug #1435303, error on empty BLOB transf.
|
* libraries/display_tbl.lib.php: bug #1435303, error on empty BLOB transf.
|
||||||
* .htaccess: added a reference to FAQ 1.36
|
* .htaccess: added a reference to FAQ 1.36
|
||||||
|
@@ -278,7 +278,7 @@ class PMA_Config
|
|||||||
*/
|
*/
|
||||||
function __wakeup()
|
function __wakeup()
|
||||||
{
|
{
|
||||||
if ( $this->source_mtime !== filemtime($this->getSource())
|
if (file_exists($this->getSource()) && $this->source_mtime !== filemtime($this->getSource())
|
||||||
|| $this->error_config_file || $this->error_config_default_file ) {
|
|| $this->error_config_file || $this->error_config_default_file ) {
|
||||||
$this->settings = array();
|
$this->settings = array();
|
||||||
$this->load($this->getSource());
|
$this->load($this->getSource());
|
||||||
|
Reference in New Issue
Block a user