From: eileenmcnaugton Date: Fri, 22 Apr 2016 05:54:14 +0000 (+1200) Subject: Logging schema update, fix connection_id X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=09e703d7c30e79e8891c4333cca1c07a10956837;p=civicrm-core.git Logging schema update, fix connection_id --- diff --git a/CRM/Logging/Schema.php b/CRM/Logging/Schema.php index 2c17f7b42b..a8a4aa492e 100644 --- a/CRM/Logging/Schema.php +++ b/CRM/Logging/Schema.php @@ -875,7 +875,7 @@ COLS; // The log tables have not yet been converted to have varchar(17) fields for log_conn_id. // Continue to use the less reliable connection_id for al tables for now. $sqlStmt .= "CONNECTION_ID(), @civicrm_user_id, '{eventName}');"; - $deleteSQL .= "@uniqueID, @civicrm_user_id, '{eventName}');"; + $deleteSQL .= "CONNECTION_ID(), @civicrm_user_id, '{eventName}');"; } $sqlStmt .= "END IF;";