Index: autoload.php
===================================================================
--- autoload.php	(révision 23517)
+++ autoload.php	(copie de travail)
@@ -52,7 +52,7 @@
 
     public static function autoload( $className )
     {
-        if ( is_null( self::$ezpClasses ) )
+        if ( self::$ezpClasses === null )
         {
             $ezpKernelClasses = require 'autoload/ezp_kernel.php';
             $ezpExtensionClasses = false;
@@ -92,7 +92,7 @@
             }
         }
 
-        if ( array_key_exists( $className, self::$ezpClasses ) )
+        if ( isset( self::$ezpClasses[$className] ) )
         {
             require( self::$ezpClasses[$className] );
         }
@@ -134,4 +134,4 @@
     spl_autoload_register( array( 'ezcBase', 'autoload' ) );
 }
 
-?>
\ No newline at end of file
+?>
