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 9f0584a commit ed01a4aCopy full SHA for ed01a4a
app/code/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractType.php
@@ -285,7 +285,11 @@ protected function _initAttributes()
285
}
286
287
foreach ($absentKeys as $attributeSetName => $attributeIds) {
288
- $unknownAttributeIds = array_diff($attributeIds, array_keys(self::$commonAttributesCache), self::$invisibleAttributesCache);
+ $unknownAttributeIds = array_diff(
289
+ $attributeIds,
290
+ array_keys(self::$commonAttributesCache),
291
+ self::$invisibleAttributesCache
292
+ );
293
if ($unknownAttributeIds) {
294
$this->attachAttributesById($attributeSetName, $attributeIds);
295
0 commit comments