Skip to content

Commit 6bb4c8a

Browse files
committed
MAGETWO-66546: magento/magento2: #8765 #8778
- Merge Pull Request #8778 from cavalier79/magento2:fix8765
2 parents 2b24aa3 + d82825f commit 6bb4c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Catalog/Model/ResourceModel/AbstractResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,6 @@ public function getAttributeRawValue($entityId, $attribute, $store)
568568
$attributesData = $_data[1];
569569
}
570570

571-
return $attributesData ? $attributesData : false;
571+
return $attributesData === false ? false : $attributesData;
572572
}
573573
}

0 commit comments

Comments
 (0)