diff --git a/Classes/Aspect/ContentCacheSegmentAspect.php b/Classes/Aspect/ContentCacheSegmentAspect.php index e8abd87..34b3e55 100644 --- a/Classes/Aspect/ContentCacheSegmentAspect.php +++ b/Classes/Aspect/ContentCacheSegmentAspect.php @@ -141,6 +141,7 @@ public function wrapDynamicSegment(JoinPointInterface $joinPoint): string */ public function interceptContentCacheEntryIdentifier(JoinPointInterface $joinPoint): string { + $fusionPath = $joinPoint->getMethodArgument('fusionPath'); $cacheIdentifierValues = $joinPoint->getMethodArgument('cacheIdentifierValues'); $this->interceptedCacheEntryValues = []; @@ -153,6 +154,7 @@ public function interceptContentCacheEntryIdentifier(JoinPointInterface $joinPoi } $result = $joinPoint->getAdviceChain()->proceed($joinPoint); + $this->interceptedCacheEntryValues['[fusionPath]'] = htmlspecialchars($fusionPath); $this->interceptedCacheEntryValues['=> hashed identifier'] = $result; return $result; } diff --git a/Resources/Public/Style/main.css b/Resources/Public/Style/main.css index 446d824..96b1105 100644 --- a/Resources/Public/Style/main.css +++ b/Resources/Public/Style/main.css @@ -54,6 +54,13 @@ grid-gap: .2rem .5rem; } +.t3n__content-cache-debug-table .object-values span { + max-width: 90%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + .t3n__content-cache-debug-table i { font-style: normal; font-weight: bold;