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-08-24 14:53:13 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-08-24 14:53:13 +0400
commit710c7e2dd73209a10d994cd11c9b8ef19fc1f78c (patch)
tree0a418d2c953d03280332d5724e76345f7394545e /main.php
parent8cd8760256925aecc00de01cc0e5bfc987d128b1 (diff)
Print server_comment after server software version
Diffstat (limited to 'main.php')
-rw-r--r--main.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.php b/main.php
index 8101ab03d0..0325f08599 100644
--- a/main.php
+++ b/main.php
@@ -157,7 +157,7 @@ if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
echo '<ul>' . "\n";
PMA_printListItem(__('Server') . ': ' . $server_info, 'li_server_info');
PMA_printListItem(__('Software') . ': ' . PMA_getServerType(), 'li_server_type');
- PMA_printListItem(__('Software version') . ': ' . PMA_MYSQL_STR_VERSION, 'li_server_version');
+ PMA_printListItem(__('Software version') . ': ' . PMA_MYSQL_STR_VERSION . ' - ' . PMA_MYSQL_VERSION_COMMENT, 'li_server_version');
PMA_printListItem(__('Protocol version') . ': ' . PMA_DBI_get_proto_info(),
'li_mysql_proto');
PMA_printListItem(__('User') . ': ' . htmlspecialchars($mysql_cur_user_and_host),