Skip to content

Commit

Permalink
Merge pull request #291 from weakbit/bugfix/11.1.7-hashed-identifiers
Browse files Browse the repository at this point in the history
Bugfix/11.1.7 hashed identifiers
  • Loading branch information
lochmueller authored Apr 8, 2021
2 parents 02172b9 + 112bf90 commit 8aac0ac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Classes/Cache/StaticFileBackend.php
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,9 @@ protected function getFilepath(string $entryIdentifier): string
return '';
}
$entry = unserialize($data);
$url = $entry['url'];
if (!empty($entry['url'])) {
$url = $entry['url'];
}
}
$identifierBuilder = GeneralUtility::makeInstance(IdentifierBuilder::class);

Expand Down

0 comments on commit 8aac0ac

Please sign in to comment.