diff --git a/src/Tags/Cache.php b/src/Tags/Cache.php index f07131c647..a487ce115a 100644 --- a/src/Tags/Cache.php +++ b/src/Tags/Cache.php @@ -34,6 +34,10 @@ private function isEnabled() private function getCacheKey() { + if ($this->params->has('key')) { + return $this->params->get('key'); + } + $hash = [ 'content' => $this->content, 'params' => $this->params->all(),