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 a10f074 commit ad68105Copy full SHA for ad68105
app/code/Magento/CatalogImportExport/Model/Import/Product/Validator.php
@@ -71,7 +71,7 @@ protected function textValidation($attrCode, $type)
71
if ($type == 'text') {
72
$valid = $this->string->strlen($val) < Product::DB_MAX_TEXT_LENGTH;
73
} else if ($attrCode == Product::COL_SKU) {
74
- $valid = $this->string->strlen($val) < SKU::SKU_MAX_LENGTH;
+ $valid = $this->string->strlen($val) <= SKU::SKU_MAX_LENGTH;
75
} else {
76
$valid = $this->string->strlen($val) < Product::DB_MAX_VARCHAR_LENGTH;
77
}
0 commit comments