Bug #59147 ยป bug_59147.diff
patched/typo3/sysext/core/Classes/Package/PackageManager.php 2014-05-27 16:56:34.000000000 +0200 | ||
---|---|---|
*/
|
||
public function __construct() {
|
||
$this->packagesBasePaths = array(
|
||
'local' => PATH_typo3conf . 'ext',
|
||
'global' => PATH_typo3 . 'ext',
|
||
'sysext' => PATH_typo3 . 'sysext',
|
||
'global' => PATH_typo3 . 'ext',
|
||
'local' => PATH_typo3conf . 'ext',
|
||
'composer' => PATH_site . 'Packages',
|
||
);
|
||
$this->packageStatesPathAndFilename = PATH_typo3conf . 'PackageStates.php';
|
||
... | ... | |
// Change this to read the target from Composer or any other source
|
||
$this->packageStatesConfiguration['packages'][$packageKey]['classesPath'] = Package::DIRECTORY_CLASSES;
|
||
}
|
||
$registerOnlyNewPackages = !empty($this->packages);
|
||
$this->registerPackagesFromConfiguration($registerOnlyNewPackages);
|
||
if ($this->packageStatesConfiguration != $previousPackageStatesConfiguration) {
|