diff options
| author | 2017-08-24 18:15:21 +0200 | |
|---|---|---|
| committer | 2017-08-24 18:15:21 +0200 | |
| commit | 2916637a701f387f9ac9f0ee4632d2cea9169e46 (patch) | |
| tree | 60b85a8d2a82bedeeb19b253e10c5a40135b40fd /app | |
| parent | a41b7d8b70e733e85235983f84898587b5cd749f (diff) | |
| parent | 306ec7c86ba65aeeaa926eb2f1c19361b9adc408 (diff) | |
Merge pull request #1618 from Alkarex/php_5.3.8
Increase minimal support to PHP 5.3.8+
Diffstat (limited to 'app')
| -rw-r--r-- | app/install.php | 2 | ||||
| -rw-r--r-- | app/views/update/checkInstall.phtml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/install.php b/app/install.php index cd276bb7b..e77eaa6a5 100644 --- a/app/install.php +++ b/app/install.php @@ -410,7 +410,7 @@ function printStep1() { <?php if ($res['php'] == 'ok') { ?> <p class="alert alert-success"><span class="alert-head"><?php echo _t('gen.short.ok'); ?></span> <?php echo _t('install.check.php.ok', PHP_VERSION); ?></p> <?php } else { ?> - <p class="alert alert-error"><span class="alert-head"><?php echo _t('gen.short.damn'); ?></span> <?php echo _t('install.check.php.nok', PHP_VERSION, '5.3.3'); ?></p> + <p class="alert alert-error"><span class="alert-head"><?php echo _t('gen.short.damn'); ?></span> <?php echo _t('install.check.php.nok', PHP_VERSION, '5.3.8'); ?></p> <?php } ?> <?php if ($res['minz'] == 'ok') { ?> diff --git a/app/views/update/checkInstall.phtml b/app/views/update/checkInstall.phtml index 543ab43de..33d78cbe7 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.3'); + echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'), PHP_VERSION, '5.3.8'); } else { echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok')); } |
