We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa3edb commit 3f60168Copy full SHA for 3f60168
lib/internal/Magento/Framework/View/Model/Layout/Merge.php
@@ -926,7 +926,7 @@ public function getScope()
926
*/
927
public function getCacheId()
928
{
929
- return $this->generateCacheId(md5(implode('|',
930
- array_merge($this->getHandles(), $this->layoutCacheKey->getCacheKeys()))));
+ $layoutCacheKeys = $this->layoutCacheKey->getCacheKeys();
+ return $this->generateCacheId(md5(implode('|', array_merge($this->getHandles(), $layoutCacheKeys))));
931
}
932
0 commit comments