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 63c9ea4 commit 77492c1Copy full SHA for 77492c1
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) === TRUE) {
+ $today >= strtotime($specialPriceFromDate) && is_null($specialPriceToDate)) {
174
$price = $specialPrice;
175
}
176
0 commit comments