From: Seamus Lee Date: Mon, 25 May 2020 10:43:50 +0000 (+1000) Subject: Add in domain tokens onto the Message Template admin interface X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=736c1ee84a1a8b74e13333da1eedf007cfbc7954;p=civicrm-core.git Add in domain tokens onto the Message Template admin interface --- diff --git a/CRM/Admin/Form/MessageTemplates.php b/CRM/Admin/Form/MessageTemplates.php index 11b564a309..5f809f25be 100644 --- a/CRM/Admin/Form/MessageTemplates.php +++ b/CRM/Admin/Form/MessageTemplates.php @@ -167,6 +167,7 @@ class CRM_Admin_Form_MessageTemplates extends CRM_Core_Form { //get the tokens. $tokens = CRM_Core_SelectValues::contactTokens(); + $tokens = array_merge($tokens, CRM_Core_SelectValues::domainTokens()); $this->assign('tokens', CRM_Utils_Token::formatTokensForDisplay($tokens));