Skip to content
Snippets Groups Projects
Commit 6a30bb95 authored by lcdweb's avatar lcdweb
Browse files

CRM-12075 make recurring contrib links frontend flagged

parent 55ec2e69
No related branches found
No related tags found
No related merge requests found
......@@ -324,7 +324,7 @@ abstract class CRM_Core_Payment {
$checksumValue = CRM_Contact_BAO_Contact_Utils::generateChecksum($contactID, NULL, 'inf');
$checksumValue = "&cs={$checksumValue}";
}
return CRM_Utils_System::url($url, "reset=1&mid={$entityID}{$checksumValue}", TRUE, NULL, FALSE, FALSE);
return CRM_Utils_System::url($url, "reset=1&mid={$entityID}{$checksumValue}", TRUE, NULL, FALSE, TRUE);
}
if ($entityID && $entity == 'contribution') {
......@@ -333,7 +333,7 @@ abstract class CRM_Core_Payment {
$checksumValue = CRM_Contact_BAO_Contact_Utils::generateChecksum($contactID, NULL, 'inf');
$checksumValue = "&cs={$checksumValue}";
}
return CRM_Utils_System::url($url, "reset=1&coid={$entityID}{$checksumValue}", TRUE, NULL, FALSE, FALSE);
return CRM_Utils_System::url($url, "reset=1&coid={$entityID}{$checksumValue}", TRUE, NULL, FALSE, TRUE);
}
if ($entityID && $entity == 'recur') {
......@@ -348,7 +348,7 @@ INNER JOIN civicrm_contribution con ON ( con.contribution_recur_id = rec.id )
$checksumValue = CRM_Contact_BAO_Contact_Utils::generateChecksum($contactID, NULL, 'inf');
$checksumValue = "&cs={$checksumValue}";
}
return CRM_Utils_System::url($url, "reset=1&crid={$entityID}{$checksumValue}", TRUE, NULL, FALSE, FALSE);
return CRM_Utils_System::url($url, "reset=1&crid={$entityID}{$checksumValue}", TRUE, NULL, FALSE, TRUE);
}
if ($this->isSupported('accountLoginURL')) {
......
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