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 0a99c85 commit 169cab9Copy full SHA for 169cab9
lib/internal/Magento/Framework/View/Asset/Minification.php
@@ -162,7 +162,7 @@ public function getExcludes($contentType)
162
private function getMinificationExcludeValues($key)
163
{
164
$configValues = $this->scopeConfig->getValue($key, $this->scope) ?? [];
165
- //compatibility fix for type change from new line separated string values to array
+ //value used to be a string separated by 'newline' separator so we need to convert it to array
166
if (!is_array($configValues)) {
167
$configValuesFromString = [];
168
foreach (explode("\n", $configValues) as $exclude) {
0 commit comments