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>';
}
$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,