Warning Fix
authorSudha Bisht <sudha.bisht@webaccessglobal.com>
Fri, 21 Aug 2015 11:14:11 +0000 (16:44 +0530)
committerSudha Bisht <sudha.bisht@webaccessglobal.com>
Fri, 21 Aug 2015 11:14:11 +0000 (16:44 +0530)
CRM/Logging/Schema.php

index 4fc1c5c460e2f81f43d75b8f87717b8c448731bc..17c6c41c87c09906563714ca1f34b28981340261 100644 (file)
@@ -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;