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 3e64773 commit 26c5dc1Copy full SHA for 26c5dc1
app/code/Magento/Bundle/Model/Resource/Bundle.php
@@ -93,9 +93,10 @@ public function getSelectionsData($productId)
93
*/
94
public function dropAllQuoteChildItems($productId)
95
{
96
- $adapter = $this->quoteResource->getReadConnection()->select()->getAdapter();
+ $select = $this->quoteResource->getReadConnection()->select();
97
+ $adapter = $select->getAdapter();
98
$quoteItemIds = $adapter->fetchCol(
- $this->_getReadAdapter()->select()->from(
99
+ $select->from(
100
$this->getTable('quote_item'),
101
['item_id']
102
)->where(
0 commit comments