summaryrefslogtreecommitdiff
path: root/app/views/update/checkInstall.phtml
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-07-30 18:45:34 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-07-30 18:45:34 +0200
commitfe18d12551f626c56257f825caf8f97a4a5461ce (patch)
treebb494e7eea4589d0c08f29e644a9ed07897d4d62 /app/views/update/checkInstall.phtml
parenta78b3f5e7f19a1f1320fcb12f7c8b450f9a9dba4 (diff)
Update MySQL to utf8mb4 (full unicode) 🔥
* Requires MySQL 5.5.3+ (drop support for MySQL 5.0) * Requires PHP 5.3.3+ (drop support for PHP 5.3.0) https://github.com/FreshRSS/FreshRSS/issues/789#issuecomment-73878076
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 ed3858b56..543ab43de 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.3.0');
+ echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'), PHP_VERSION, '5.3.3');
} else {
echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'));
}