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:
authorMichal Čihař <michal@cihar.com>2017-07-21 16:02:57 +0300
committerMichal Čihař <michal@cihar.com>2017-07-21 16:04:59 +0300
commit8270a1c1e16bf614a5a37d7d79a9afbce649a2ec (patch)
tree1d75229a385bdee65210df2404cd9cf899a00ed5 /index.php
parent95269dd3d997828375d539e50e1e2b98ed029a14 (diff)
Indicate SSL status on main page
- indicate status on main page - indicate possible configuration issues - show in red if remote connection is not using SSL - add overview documentation for server SSL setup Fixes #12354 Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/index.php b/index.php
index 91314bd0db..3d236fd025 100644
--- a/index.php
+++ b/index.php
@@ -307,6 +307,10 @@ if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
'li_server_type'
);
PMA_printListItem(
+ __('Server connection:') . ' ' . PhpMyAdmin\Util::getServerSSL(),
+ 'li_server_type'
+ );
+ PMA_printListItem(
__('Server version:')
. ' '
. $GLOBALS['dbi']->getVersionString() . ' - ' . $GLOBALS['dbi']->getVersionComment(),