Bug #57950 ยป PackageManager.patch
typo3/sysext/core/Classes/Package/PackageManager.php (revision ) | ||
---|---|---|
protected function getCacheIdentifier() {
|
||
if ($this->cacheIdentifier === NULL) {
|
||
if (@file_exists($this->packageStatesPathAndFilename)) {
|
||
$this->cacheIdentifier = md5_file($this->packageStatesPathAndFilename);
|
||
$this->cacheIdentifier = md5(PATH_site . md5_file($this->packageStatesPathAndFilename));
|
||
} else {
|
||
$this->cacheIdentifier = NULL;
|
||
}
|