Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Przybylski <piotrprz@gmail.com>2011-06-03 23:34:26 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-06-03 23:34:26 +0400
commit26ec25b65e1cec25e680c9b53c715f4c890f3590 (patch)
treee305921fda362d34fd61bf312550d6fea446276d /main.php
parent08da1557e2d95be41ef3d2821da3dc0bcfee214d (diff)
Home page: display db server type inside box, not in box header
Diffstat (limited to 'main.php')
-rw-r--r--main.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.php b/main.php
index 5afcaf5dc4..200fc63e6d 100644
--- a/main.php
+++ b/main.php
@@ -161,9 +161,10 @@ if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
$server_type = 'MariaDB';
}
echo '<div class="group">';
- echo '<h2>' . $server_type . '</h2>';
+ echo '<h2>' . __('Database server') . '</h2>';
echo '<ul>' . "\n";
PMA_printListItem(__('Server') . ': ' . $server_info, 'li_server_info');
+ PMA_printListItem(__('Server type') . ': ' . $server_type, 'li_server_type');
PMA_printListItem(__('Server version') . ': ' . PMA_MYSQL_STR_VERSION, 'li_server_version');
PMA_printListItem(__('Protocol version') . ': ' . PMA_DBI_get_proto_info(),
'li_mysql_proto');