From 2179c94c1c6a3fa3f9a6b1e1558eb58e538758c2 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Tue, 5 Sep 2017 21:08:43 -0400 Subject: [PATCH] CRM-20941 - Add punctuation to the end of sentences. --- CRM/Upgrade/Incremental/General.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Upgrade/Incremental/General.php b/CRM/Upgrade/Incremental/General.php index b7637c3bc6..dca7b60d5d 100644 --- a/CRM/Upgrade/Incremental/General.php +++ b/CRM/Upgrade/Incremental/General.php @@ -75,7 +75,7 @@ class CRM_Upgrade_Incremental_General { $preUpgradeMessage .= '

'; // CRM-20941 PHP 5.3 end date of End of 2017, PHP 5.4 End date End of Feb 2018 Recommend anyone on PHP 5.5 to move up to 5.6 or later e.g. 7.0 if (version_compare(phpversion(), self::PREVIOUS_MIN_RECOMMENDED_PHP_VER) >= 0) { - $preUpgradeMessage .= ts('You may proceed with the upgrade and CiviCRM %1 will continue working normally, but future releases will require PHP %2 or above. We recommend you use the most recent php version you can', array( + $preUpgradeMessage .= ts('You may proceed with the upgrade and CiviCRM %1 will continue working normally, but future releases will require PHP %2 or above. We recommend you use the most recent php version you can.', array( 1 => $latestVer, 2 => self::MIN_RECOMMENDED_PHP_VER, )); @@ -85,7 +85,7 @@ class CRM_Upgrade_Incremental_General { if (version_compare(phpversion(), 5.4) < 0) { $date = CRM_Utils_Date::customFormat('2017-12-31', $dateFormat); } - $preUpgradeMessage .= ts('You may proceed with the upgrade and CiviCRM %1 will continue working normally, but PHP %2 will not work in releases published after %3. We recommend you use the most recent php version you can. For more explanation see the announcement', array( + $preUpgradeMessage .= ts('You may proceed with the upgrade and CiviCRM %1 will continue working normally, but PHP %2 will not work in releases published after %3. We recommend you use the most recent php version you can. For more explanation see the announcement.', array( 1 => $currentVer, 2 => phpversion(), 3 => $date, -- 2.25.1