From 201392374482bba088aa8713be54dc37fd4bde6b Mon Sep 17 00:00:00 2001 From: Sudha Bisht Date: Fri, 21 Aug 2015 16:44:11 +0530 Subject: [PATCH] Warning Fix --- CRM/Logging/Schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Logging/Schema.php b/CRM/Logging/Schema.php index 4fc1c5c460..17c6c41c87 100644 --- a/CRM/Logging/Schema.php +++ b/CRM/Logging/Schema.php @@ -534,7 +534,7 @@ WHERE table_schema IN ('{$this->db}', '{$civiDB}')"; * Create a log table with schema mirroring the given table’s structure and seeding it with the given table’s contents. */ private function createLogTableFor($table) { - $dao = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE $table", CRM_Core_DAO::$_nullArray, TRUE, NULL, FALSE, FALSE); + $dao = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE $table", CRM_Core_DAO::$_nullArray, TRUE, NULL, FALSE, FALSE); $dao->fetch(); $query = $dao->Create_Table; -- 2.25.1