summaryrefslogtreecommitdiff
path: root/core/views/admin_block_platform.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/views/admin_block_platform.html.php')
-rw-r--r--core/views/admin_block_platform.html.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/views/admin_block_platform.html.php b/core/views/admin_block_platform.html.php
index 2f13d5d9..09fc0515 100644
--- a/core/views/admin_block_platform.html.php
+++ b/core/views/admin_block_platform.html.php
@@ -1,15 +1,15 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<li>
- <?= t("Operating System: {{operating_system}}", array("operating_system" => PHP_OS)) ?>
+ <?= t("Operating System: %operating_system", array("operating_system" => PHP_OS)) ?>
</li>
<li>
- <?= t("Apache: {{apache_version}}", array("apache_version" => function_exists("apache_get_version") ? apache_get_version() : t("Unknown"))) ?>
+ <?= t("Apache: %apache_version", array("apache_version" => function_exists("apache_get_version") ? apache_get_version() : t("Unknown"))) ?>
</li>
<li>
- <?= t("PHP: {{php_version}}", array("php_version" => phpversion())) ?>
+ <?= t("PHP: %php_version", array("php_version" => phpversion())) ?>
</li>
<li>
- <?= t("MySQL: {{mysql_version}}", array("mysql_version" => mysql_get_server_info())) ?>
+ <?= t("MySQL: %mysql_version", array("mysql_version" => mysql_get_server_info())) ?>
</li>
</ul>