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 5b93a76 commit 61d1565Copy full SHA for 61d1565
app/code/Magento/Wishlist/Model/ResourceModel/Item/Collection.php
@@ -398,7 +398,11 @@ protected function _renderFiltersBefore()
398
$availableProductTypes = $this->salesConfig->getAvailableProductTypes();
399
$this->getSelect()->join(
400
['cat_prod' => $this->getTable('catalog_product_entity')],
401
- $this->getConnection()->quoteInto('cat_prod.type_id IN (?) AND main_table.product_id = cat_prod.entity_id', $availableProductTypes),
+ $this->getConnection()
402
+ ->quoteInto(
403
+ 'cat_prod.type_id IN (?) AND main_table.product_id = cat_prod.entity_id',
404
+ $availableProductTypes
405
+ ),
406
[]
407
);
408
}
0 commit comments