Skip to content

Commit 58898f1

Browse files
authored
fixes regression introduced by PR 1720 (#1733)
it seems there was a typo in #1720, this should fix it.
1 parent bf76ce1 commit 58898f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Varien/Db/Adapter/Pdo/Mysql.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2640,7 +2640,7 @@ public function isTableExists($tableName, $schemaName = null)
26402640
$this->quote($tableName),
26412641
$fromDbName
26422642
);
2643-
$ddl = $this->rawFetchRow($sql, 'tbl_exists');
2643+
$ddl = $this->raw_FetchRow($sql, 'tbl_exists');
26442644
if ($ddl) {
26452645
return true;
26462646
}

0 commit comments

Comments
 (0)