From 58898f144c39c218fd16726506f11c6e72da4eb1 Mon Sep 17 00:00:00 2001 From: Fabrizio Balliano Date: Wed, 14 Jul 2021 09:52:23 +0100 Subject: [PATCH] fixes regression introduced by PR 1720 (#1733) 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; }