Skip to content
Snippets Groups Projects
Commit 66092b51 authored by sadashiv's avatar sadashiv
Browse files

Fix for issue 2685

parent 3efec378
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment