Actions
Task #55749
closedEpic #47018: Implement Composer support and clean package manager API
isPackageActive() should check runtimeActivatedPackages first
Start date:
2014-02-06
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.3
Tags:
Complexity:
no-brainer
Sprint Focus:
Description
\TYPO3\CMS\Core\Package\PackageManager::isPackageActive() does a:
return parent::isPackageActive($packageKey) || isset($this->runtimeActivatedPackages[$packageKey]);
Where it should do a test on the more lightweight isset() first:
return isset($this->runtimeActivatedPackages[$packageKey]) || parent::isPackageActive($packageKey);
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/27391
Updated by Michiel Roos almost 11 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 5ab2885b2dc8ebeb38422bd22f50c8f1006c5319.
Updated by Riccardo De Contardi about 7 years ago
- Status changed from Resolved to Closed
Actions