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 ddb6325 + c21cd6f commit 1e52e46Copy full SHA for 1e52e46
ResourceModel/ImportData.php
@@ -35,11 +35,11 @@ protected function _construct()
35
{
36
if ($this->scopeConfig->isSetFlag('fastsimpleimport/database/import_temp_table')) {
37
$this->getConnection()->createTemporaryTableLike(
38
- 'importexport_importdata_tmp',
39
- 'importexport_importdata',
+ $this->_resources->getTableName('importexport_importdata_tmp'),
+ $this->_resources->getTableName('importexport_importdata'),
40
true
41
);
42
- $this->_init('importexport_importdata_tmp', 'id');
+ $this->_init($this->_resources->getTableName('importexport_importdata_tmp'), 'id');
43
} else {
44
parent::_construct();
45
}
0 commit comments