diff --git a/CRM/Upgrade/Incremental/php/FiveSeventyNine.php b/CRM/Upgrade/Incremental/php/FiveSeventyNine.php index c265a3e9eb73..68ee4f22f4d3 100644 --- a/CRM/Upgrade/Incremental/php/FiveSeventyNine.php +++ b/CRM/Upgrade/Incremental/php/FiveSeventyNine.php @@ -26,10 +26,9 @@ public function setPreUpgradeMessage(&$message, $rev, $current = NULL) { $tokenForms = static::findAfformsWithMsgToken(); if (!empty($tokenForms)) { $formList = implode(', ', array_map(fn($name) => '"' . htmlentities($name) . '"', $tokenForms)); - $message .= '

' . ts('Some custom forms (%1) support authenticated email links. Links will still be generated in 5.79+, but they only confer access to one page at a time. If you need a link to provide a full login-session, please install extension %3.', [ + $message .= '

' . ts('Some custom forms (%1) support authenticated email links. Links will still be generated in 5.79+, but they only confer access to one page at a time. Please review the CiviCRM 5.79 Form-Token Notice.', [ 1 => $formList, - 2 => 'href="https://lab.civicrm.org/extensions/afform-login-token" target="_blank"', - 3 => 'Afform Login Token', + 2 => 'href="https://lab.civicrm.org/dev/core/-/wikis/CiviCRM-v5.79-Form-Token-Notice" target="_blank"', ]) . '

'; } }