diff --git a/lib/Doctrine/ORM/Proxy/Autoloader.php b/lib/Doctrine/ORM/Proxy/Autoloader.php index b79719388..d9534b6fc 100644 --- a/lib/Doctrine/ORM/Proxy/Autoloader.php +++ b/lib/Doctrine/ORM/Proxy/Autoloader.php @@ -75,7 +75,9 @@ class Autoloader require $file; } }; - spl_autoload_register($autoloader); + + spl_autoload_register($autoloader, true, true); + return $autoloader; } }