Skip to content

Commit

Permalink
- Fixed bug #017230: Fatal error on first pageview after clusterize
Browse files Browse the repository at this point in the history
  • Loading branch information
Bertrand Dunogier committed Sep 9, 2010
1 parent d8b09ea commit 0c28834
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Expand Up @@ -21,5 +21,6 @@ Changes from 4.4.0beta2 to 4.4.0beta3
- Fixed bug #017202: MOUNT_POINT_PATH missing from index_cluster.php example in index_image.php
- Fixed bug #017207: eZMail doesn't support SSL in SMTP
- Fixed bug #017228: DB exception thrown when trying to access Setup wizard
- Fixed bug #017230: Fatal error on first pageview after clusterize
- Fixed bug #017232: Incomplete change to the metadata property in eZDBFileHandler
- Fixed bug #017244: MySQLi DB cluster file handler can return null from _selectOne
6 changes: 3 additions & 3 deletions lib/ezutils/classes/ezini.php
Expand Up @@ -350,7 +350,7 @@ function findInputFiles( &$inputFiles, &$iniFile )
{
if ( file_exists ( $iniFile . '.append' ) )
{
eZDebug::writeStrict( "INI files with *.ini.append suffix is DEPRECATED, use *.ini or *.ini.append.php instead: $iniFile.append", __METHOD__ );
// eZDebug::writeStrict( "INI files with *.ini.append suffix is DEPRECATED, use *.ini or *.ini.append.php instead: $iniFile.append", __METHOD__ );
$inputFiles[] = $iniFile . '.append';
}

Expand All @@ -373,7 +373,7 @@ function findInputFiles( &$inputFiles, &$iniFile )

if ( file_exists( $overrideFile . '.php' ) )
{
eZDebug::writeStrict( "INI files with *.ini.php suffix is DEPRECATED, use *.ini or *.ini.append.php instead: $overrideFile.php", __METHOD__ );
// eZDebug::writeStrict( "INI files with *.ini.php suffix is DEPRECATED, use *.ini or *.ini.append.php instead: $overrideFile.php", __METHOD__ );
$inputFiles[] = $overrideFile . '.php';
}

Expand All @@ -389,7 +389,7 @@ function findInputFiles( &$inputFiles, &$iniFile )

if ( file_exists( $overrideFile . '.append' ) )
{
eZDebug::writeStrict( "INI files with *.ini.append suffix is DEPRECATED, use *.ini or *.ini.append.php instead: $overrideFile.append", __METHOD__ );
// eZDebug::writeStrict( "INI files with *.ini.append suffix is DEPRECATED, use *.ini or *.ini.append.php instead: $overrideFile.append", __METHOD__ );
$inputFiles[] = $overrideFile . '.append';
}
}
Expand Down

0 comments on commit 0c28834

Please sign in to comment.