CRM-20941 Add in Link to blog post on bumping PHP Version
authorSeamus Lee <seamuslee001@gmail.com>
Wed, 16 Aug 2017 21:04:09 +0000 (07:04 +1000)
committerSeamus Lee <seamuslee001@gmail.com>
Wed, 16 Aug 2017 21:10:10 +0000 (07:10 +1000)
CRM/Upgrade/Incremental/General.php
CRM/Utils/Check/Component/Env.php

index 68afc97cefdb257a4431ac97697967d11816b770..e8a820ecb1ed1c3a4c38ae689b49cca07e330b29 100644 (file)
@@ -85,10 +85,11 @@ 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', 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 <a href="%4">the announcement</a>', array(
           1 => $currentVer,
           2 => phpversion(),
           3 => $date,
+          4 => 'https://civicrm.org/blog/totten/end-of-zombies-php-53-and-54',
         ));
       }
       $preUpgradeMessage .= '</p>';
index 1660b89d74d94164c8fdd99d807bba0960a05a1e..6c74b21b961d69237b8b7ffa9375da68c3aca5e0 100644 (file)
@@ -76,11 +76,12 @@ class CRM_Utils_Check_Component_Env extends CRM_Utils_Check_Component {
       }
       $messages[] = new CRM_Utils_Check_Message(
         __FUNCTION__,
-        ts('This system uses PHP version %1. CiviCRM can be installed on this version, However PHP version %1, will not work in releases published after %2, and version %3 is recommended.',
+        ts('This system uses PHP version %1. CiviCRM can be installed on this version. However PHP version %1 will not work in releases published after %2, and version %3 is recommended. For more explanation see <a href="%4"> the announcement</a>',
           array(
             1 => phpversion(),
             2 => $date,
             3 => CRM_Upgrade_Incremental_General::MIN_RECOMMENDED_PHP_VER,
+            4 => 'https://civicrm.org/blog/totten/end-of-zombies-php-53-and-54',
           )),
         ts('PHP Out-of-Date'),
         \Psr\Log\LogLevel::WARNING,