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 c9e79cb commit 73ba904Copy full SHA for 73ba904
app/code/Magento/Catalog/Model/Product.php
@@ -2154,7 +2154,7 @@ public function reset()
2154
*/
2155
public function getCacheIdTags()
2156
{
2157
- $tags = parent::getCacheIdTags();
+ $tags = (array)$this->getData('cache_id_tags');
2158
$affectedCategoryIds = $this->getAffectedCategoryIds();
2159
if (!$affectedCategoryIds) {
2160
$affectedCategoryIds = $this->getCategoryIds();
@@ -2334,7 +2334,8 @@ public function isDisabled()
2334
public function getImage()
2335
2336
$this->getTypeInstance()->setImageFromChildProduct($this);
2337
- return parent::getImage();
+
2338
+ return (string)$this->getData('image');
2339
}
2340
2341
/**
0 commit comments