Skip to content

Commit

Permalink
fixes regression introduced by PR 1720 (#1733)
Browse files Browse the repository at this point in the history
it seems there was a typo in #1720, this should fix it.
  • Loading branch information
fballiano authored Jul 14, 2021
1 parent bf76ce1 commit 58898f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Varien/Db/Adapter/Pdo/Mysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -2640,7 +2640,7 @@ public function isTableExists($tableName, $schemaName = null)
$this->quote($tableName),
$fromDbName
);
$ddl = $this->rawFetchRow($sql, 'tbl_exists');
$ddl = $this->raw_FetchRow($sql, 'tbl_exists');
if ($ddl) {
return true;
}
Expand Down

0 comments on commit 58898f1

Please sign in to comment.