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 9c389da commit 1727b68Copy full SHA for 1727b68
app/code/Magento/PageCache/Controller/Block.php
@@ -112,7 +112,8 @@ protected function _getBlocks()
112
$handles = $this->base64jsonSerializer->unserialize($handles);
113
114
$handles_size = (int) $this->config->getValue(self::XML_HANDLES_SIZE);
115
- $handles = ($handles_size && count($handles) > $handles_size) ? array_splice($handles, 0, $handles_size) : $handles;
+ $handles = ($handles_size && count($handles) > $handles_size)
116
+ ? array_splice($handles, 0, $handles_size) : $handles;
117
118
if (!$this->validateHandleParam($handles)) {
119
return [];
0 commit comments