aboutsummaryrefslogtreecommitdiff
path: root/app/views/update/checkInstall.phtml
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-20 12:52:18 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-20 12:52:18 +0200
commitae84e877c5fdda2b1a29ab0bb6c2469258fcc9a5 (patch)
tree51ee33bf0f850cbf959df839d7871707d34ff6cb /app/views/update/checkInstall.phtml
parent61a2f9387f2d7f681040c1641c7601fa3002c8f8 (diff)
Fix some i18n keys
Diffstat (limited to 'app/views/update/checkInstall.phtml')
-rw-r--r--app/views/update/checkInstall.phtml8
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 } ?>