aboutsummaryrefslogtreecommitdiff
path: root/app/views/update/checkInstall.phtml
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-09-17 20:28:07 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-09-17 20:28:07 +0200
commit38117df976a5b8776a6df483ac7666895691b832 (patch)
tree821a38d0f009f873909ea54687025d7c3c1daf6e /app/views/update/checkInstall.phtml
parenta2ed6626c2f4e85878f775abcac897a1fd3a1f42 (diff)
Require PHP 5.6+
Discussion https://github.com/FreshRSS/FreshRSS/pull/2495#issuecomment-531911473 Needed for constant arrays https://www.php.net/manual/en/migration56.new-features.php which will be used in https://github.com/FreshRSS/FreshRSS/pull/2522
Diffstat (limited to 'app/views/update/checkInstall.phtml')
-rw-r--r--app/views/update/checkInstall.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/update/checkInstall.phtml b/app/views/update/checkInstall.phtml
index e719e53dd..7ebbae869 100644
--- a/app/views/update/checkInstall.phtml
+++ b/app/views/update/checkInstall.phtml
@@ -9,7 +9,7 @@
<p class="alert <?php echo $status ? 'alert-success' : 'alert-error'; ?>">
<?php
if ($key === 'php') {
- echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'), PHP_VERSION, '5.5.0');
+ echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'), PHP_VERSION, '5.6.0');
} else {
echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'));
}