Skip to content

Commit 8aac0ac

Browse files
authored
Merge pull request #291 from weakbit/bugfix/11.1.7-hashed-identifiers
Bugfix/11.1.7 hashed identifiers
2 parents 02172b9 + 112bf90 commit 8aac0ac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Classes/Cache/StaticFileBackend.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,9 @@ protected function getFilepath(string $entryIdentifier): string
308308
return '';
309309
}
310310
$entry = unserialize($data);
311-
$url = $entry['url'];
311+
if (!empty($entry['url'])) {
312+
$url = $entry['url'];
313+
}
312314
}
313315
$identifierBuilder = GeneralUtility::makeInstance(IdentifierBuilder::class);
314316

0 commit comments

Comments
 (0)