summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-06-12 13:18:31 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-06-12 13:18:31 +0200
commitea4deb6e0568adca6c0f1bea536fac6869f9c7ec (patch)
treef65aed220db419cec159bc4dec2164bb80947a4a /app/views
parent0b1606b23bd8e1e272b3835a326d5f7a80d202e5 (diff)
Check minimum PHP 5.3.0+
https://github.com/FreshRSS/FreshRSS/pull/1133
Diffstat (limited to 'app/views')
-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 a92860c7e..ed3858b56 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.2.1');
+ echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'), PHP_VERSION, '5.3.0');
} else {
echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'));
}