diff options
| author | 2014-10-20 12:52:18 +0200 | |
|---|---|---|
| committer | 2014-10-20 12:52:18 +0200 | |
| commit | ae84e877c5fdda2b1a29ab0bb6c2469258fcc9a5 (patch) | |
| tree | 51ee33bf0f850cbf959df839d7871707d34ff6cb /app/views/update/checkInstall.phtml | |
| parent | 61a2f9387f2d7f681040c1641c7601fa3002c8f8 (diff) | |
Fix some i18n keys
Diffstat (limited to 'app/views/update/checkInstall.phtml')
| -rw-r--r-- | app/views/update/checkInstall.phtml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/views/update/checkInstall.phtml b/app/views/update/checkInstall.phtml index 32058714e..5f913bccd 100644 --- a/app/views/update/checkInstall.phtml +++ b/app/views/update/checkInstall.phtml @@ -7,7 +7,13 @@ <?php foreach ($this->status_php as $key => $status) { ?> <p class="alert <?php echo $status ? 'alert-success' : 'alert-error'; ?>"> - <?php echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok')); ?> + <?php + if ($key === 'php') { + echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'), PHP_VERSION, '5.2.1'); + } else { + echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok')); + } + ?> </p> <?php } ?> |
