Skip to content

Commit

Permalink
Merge remote-tracking branch 'ezpublish-kernel/7.5' into 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
barw4 committed Aug 28, 2020
2 parents 66a408c + 06fb92a commit 70fd43d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function providerForUnCachedMethods(): array
// string $method, array $arguments, array? $tags, array? $key, mixed? $returnValue
return [
['publishUrlAliasForLocation', [44, 2, 'name', 'eng-GB', true, false], ['urlAlias-location-44', 'urlAlias-location-path-44', 'urlAlias-notFound']],
['createCustomUrlAlias', [44, '1/2/44', true, null, false], ['urlAlias-location-44', 'urlAlias-location-path-44', 'urlAlias-notFound']],
['createCustomUrlAlias', [44, '1/2/44', true, null, false], ['urlAlias-location-44', 'urlAlias-location-path-44', 'urlAlias-notFound', 'urlAlias-5'], null, new UrlAlias(['id' => 5])],
['createGlobalUrlAlias', ['something', '1/2/44', true, null, false], ['urlAlias-notFound']],
['createGlobalUrlAlias', ['something', '1/2/44', true, 'eng-GB', false], ['urlAlias-notFound']],
['listGlobalURLAliases', ['eng-GB', 10, 50]],
Expand Down
7 changes: 6 additions & 1 deletion eZ/Publish/Core/Persistence/Cache/UrlAliasHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@ public function createCustomUrlAlias($locationId, $path, $forwarding = false, $l
$alwaysAvailable
);

$this->cache->invalidateTags(['urlAlias-location-' . $locationId, 'urlAlias-location-path-' . $locationId, 'urlAlias-notFound']);
$this->cache->invalidateTags([
'urlAlias-location-' . $locationId,
'urlAlias-location-path-' . $locationId,
'urlAlias-notFound',
'urlAlias-' . $urlAlias->id,
]);

return $urlAlias;
}
Expand Down

0 comments on commit 70fd43d

Please # to comment.