Bug #53929
closedClass loader does not respect ext_autload.php
0%
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()
Updated by Gerrit Code Review almost 11 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/25673
Updated by Gerrit Code Review almost 11 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/25673
Updated by Gerrit Code Review almost 11 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/25673
Updated by Gerrit Code Review almost 11 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/25673
Updated by Helmut Hummel over 10 years ago
- Status changed from Under Review to Closed
resolved with this one: https://review.typo3.org/24939