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 40a7876 commit 52cb1a0Copy full SHA for 52cb1a0
app/code/Magento/MediaGallery/Model/ResourceModel/Keyword/GetAssetsKeywords.php
@@ -87,7 +87,7 @@ private function getKeywordsData(array $assetIds): array
87
$connection = $this->resourceConnection->getConnection();
88
$select = $connection->select()
89
->from(['k' => $this->resourceConnection->getTableName(self::TABLE_KEYWORD)])
90
- ->join(['ak' => self::TABLE_ASSET_KEYWORD], 'k.id = ak.keyword_id')
+ ->join(['ak' => $this->resourceConnection->getTableName(self::TABLE_ASSET_KEYWORD)], 'k.id = ak.keyword_id')
91
->where('ak.asset_id IN (?)', $assetIds);
92
return $connection->query($select)->fetchAll();
93
}
0 commit comments