Actions
Bug #53929
closedClass loader does not respect ext_autload.php
Start date:
2013-11-25
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.4
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Description
I think this is a regression of https://review.typo3.org/25489/
The method
ClassLoader->buildAutoloadRegistryAndSaveToCache
was renamed to
ClassLoader->buildClassInformationsFromFullAutoloadRegistry
and, as the name indicates, the information generated is not stored in the cache any more.
The result is only stored in the
$this->earlyClassInformationsFromAutoloadRegistry
class variable and cached nowhere. But the method buildClassInformationsFromFullAutoloadRegistry()
will not be called after the caches are filled because loadPackageNamespacesFromCache()
returns true, see:
ClassLoader->setPackages()
Actions