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.
2 parents e5271c3 + e593b6a commit 304c6bbCopy full SHA for 304c6bb
app/code/Magento/Theme/Ui/Component/Design/Config/DataProvider.php
@@ -126,8 +126,10 @@ public function getData()
126
private function getCoreConfigData(): array
127
{
128
$connection = $this->resourceConnection->getConnection();
129
+ $tableName = $this->resourceConnection->getTableName('core_config_data');
130
+
131
return $connection->fetchAll(
- $connection->select()->from($connection->getTableName('core_config_data'))
132
+ $connection->select()->from($tableName)
133
->where('path = ?', 'design/theme/theme_id')
134
);
135
}
0 commit comments