From c7c54ade07f07a18e67d1bb83ae57b7be0353326 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Fri, 2 Dec 2016 20:28:50 -0500 Subject: [PATCH] CRM-19649 - Add upgrade message --- CRM/Upgrade/Incremental/php/FourSeven.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CRM/Upgrade/Incremental/php/FourSeven.php b/CRM/Upgrade/Incremental/php/FourSeven.php index 2442f75175..1db9906141 100644 --- a/CRM/Upgrade/Incremental/php/FourSeven.php +++ b/CRM/Upgrade/Incremental/php/FourSeven.php @@ -105,6 +105,12 @@ class CRM_Upgrade_Incremental_php_FourSeven extends CRM_Upgrade_Incremental_Base if ($rev == '4.7.11') { $postUpgradeMessage .= '

' . ts("By default, CiviCRM now disables the ability to import directly from SQL. To use this feature, you must explicitly grant permission 'import SQL datasource'."); } + if ($rev == '4.7.14') { + $ck_href = 'href="' . CRM_Utils_System::url('civicrm/admin/ckeditor') . '"'; + $postUpgradeMessage .= '

' . ts('CiviMail no longer forces CKEditor to add html/head/body tags to email content because some sites place these in the message header/footer. This was added in 4.7.5 and is now disabled by default.') + . '
' . ts('You can re-enable it by visitng the CKEditor Config screen and setting "fullPage = true" under the Advanced Options of the CiviMail preset.', array(1 => $ck_href)) + . '

'; + } } /** -- 2.25.1