From 4b9e9cdae34a630da145424d2edc5c69fd26c791 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Mon, 6 Feb 2017 11:19:37 +1100 Subject: [PATCH] CRM-19972 Add in post upgrade message about the addition of manage tags permission --- CRM/Upgrade/Incremental/php/FourSeven.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Upgrade/Incremental/php/FourSeven.php b/CRM/Upgrade/Incremental/php/FourSeven.php index 739e5a82a1..3f43e535d9 100644 --- a/CRM/Upgrade/Incremental/php/FourSeven.php +++ b/CRM/Upgrade/Incremental/php/FourSeven.php @@ -59,6 +59,9 @@ class CRM_Upgrade_Incremental_php_FourSeven extends CRM_Upgrade_Incremental_Base $preUpgradeMessage .= '

' . ts('The %1 payment processor is no longer bundled with CiviCRM. After upgrading you will need to install the extension to continue using it.', array(1 => 'Moneris')) . '

'; } } + if ($rev = '4.7.13') { + $preUpgradeMessage .= '

' . ts('A new permission has been added called %1 This Permission is now used to control access to the Manage Tags screen', array(1 => 'manage tags')) . '

'; + } } /** -- 2.25.1