diff --git a/CRM/Core/Payment/AuthorizeNetIPN.php b/CRM/Core/Payment/AuthorizeNetIPN.php index a2416e61d3195fb5e94f0495b9acec3e8343510d..f7f0750065e151a051619141bebf09931c98f872 100644 --- a/CRM/Core/Payment/AuthorizeNetIPN.php +++ b/CRM/Core/Payment/AuthorizeNetIPN.php @@ -300,7 +300,7 @@ INNER JOIN civicrm_contribution co ON co.contribution_recur_id = cr.id throw new CRM_Core_Exception('Could not find contributionRecur id'); } if ($contactID != $contRecur->contact_id) { - $message = ts("Recurring contribution appears to have been re-assigned from id %1 to %2, continuing with %2.", [1 => $ids['contact'], 2 => $contRecur->contact_id]); + $message = ts("Recurring contribution appears to have been re-assigned from id %1 to %2, continuing with %2.", [1 => $contactID, 2 => $contRecur->contact_id]); CRM_Core_Error::debug_log_message($message); } return $contRecur;