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 d178a55 commit 56bf57eCopy full SHA for 56bf57e
app/code/Magento/CatalogImportExport/Model/Export/Product.php
@@ -724,7 +724,9 @@ public function _getHeaderColumns()
724
*/
725
protected function setHeaderColumns($customOptionsData, $stockItemRows)
726
{
727
- $exportAttributes = count($this->_parameters["skip_attr"]) ?
+ $exportAttributes = (
728
+ array_key_exists("skip_attr", $this->_parameters) && count($this->_parameters["skip_attr"])
729
+ ) ?
730
array_intersect($this->_getExportMainAttrCodes(), $this->_getExportAttrCodes()) :
731
$this->_getExportMainAttrCodes();
732
0 commit comments