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 ce5eacd commit e92064aCopy full SHA for e92064a
app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurablePriceResolver.php
@@ -64,7 +64,7 @@ public function resolvePrice(\Magento\Framework\Pricing\SaleableInterface $produ
64
65
foreach ($this->lowestPriceOptionsProvider->getProducts($product) as $subProduct) {
66
$productPrice = $this->priceResolver->resolvePrice($subProduct);
67
- $price = $price ? min($price, $productPrice) : $productPrice;
+ $price = isset($price) ? min($price, $productPrice) : $productPrice;
68
}
69
70
return (float)$price;
0 commit comments