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 77492c1 commit d0ba997Copy full SHA for d0ba997
app/code/Magento/Catalog/Model/Product/Attribute/Backend/Tierprice.php
@@ -170,7 +170,7 @@ protected function modifyPriceData($object, $data)
170
171
if ($specialPrice && ($object->getPrice() > $object->getFinalPrice())) {
172
if ($today >= strtotime($specialPriceFromDate) && $today <= strtotime($specialPriceToDate) ||
173
- $today >= strtotime($specialPriceFromDate) && is_null($specialPriceToDate)) {
+ $today >= strtotime($specialPriceFromDate) && $specialPriceToDate === null) {
174
$price = $specialPrice;
175
}
176
0 commit comments