Skip to content

Commit 169cab9

Browse files
committed
MAGETWO-93305: Broken upgrade to 2.3 due to changed data type for minify_exclude
- rename comment
1 parent 0a99c85 commit 169cab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/View/Asset/Minification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public function getExcludes($contentType)
162162
private function getMinificationExcludeValues($key)
163163
{
164164
$configValues = $this->scopeConfig->getValue($key, $this->scope) ?? [];
165-
//compatibility fix for type change from new line separated string values to array
165+
//value used to be a string separated by 'newline' separator so we need to convert it to array
166166
if (!is_array($configValues)) {
167167
$configValuesFromString = [];
168168
foreach (explode("\n", $configValues) as $exclude) {

0 commit comments

Comments
 (0)