From e60209bf91a2ef1b1c752d4d4889816cd6a5b959 Mon Sep 17 00:00:00 2001 From: Fabrizio Balliano Date: Wed, 14 Jul 2021 08:58:11 +0100 Subject: [PATCH] fixes regression introduced by PR 1720 it seems there was a typo in https://github.com/OpenMage/magento-lts/pull/1720, this should fix it. --- lib/Varien/Db/Adapter/Pdo/Mysql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Varien/Db/Adapter/Pdo/Mysql.php b/lib/Varien/Db/Adapter/Pdo/Mysql.php index f87078d8c6d..314c6faf3d9 100644 --- a/lib/Varien/Db/Adapter/Pdo/Mysql.php +++ b/lib/Varien/Db/Adapter/Pdo/Mysql.php @@ -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; }