From 4fa8633474b4ae51773e9644575d6b1c553a52fd Mon Sep 17 00:00:00 2001 From: "J.M" Date: Sun, 28 Apr 2013 12:31:21 +0200 Subject: [PATCH] Add rfe #1421 Add retry button on connection failure with config auth --- ChangeLog | 1 + libraries/plugins/auth/AuthenticationConfig.class.php | 11 ++++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index dc7e89eead..eafbc4d2dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,7 @@ phpMyAdmin - ChangeLog - bug #3889 When login fails and error display is active, login data is displayed - bug #3890 [import] Web server upload directory import fails - bug #3891 [import] Server upload folder import file name missing in success message ++ rfe #1421 [auth] Add retry button on connection failure with config auth 4.0.0.0 (not yet released) + Patch #3481047 for rfe #3480477 Insert as new row enhancement diff --git a/libraries/plugins/auth/AuthenticationConfig.class.php b/libraries/plugins/auth/AuthenticationConfig.class.php index cec0a445bb..07ad7cb553 100644 --- a/libraries/plugins/auth/AuthenticationConfig.class.php +++ b/libraries/plugins/auth/AuthenticationConfig.class.php @@ -133,7 +133,16 @@ class AuthenticationConfig extends AuthenticationPlugin } $GLOBALS['error_handler']->dispUserErrors(); echo ' - '; + + + ' . "\n"; + echo '' + . __('Retry to connect') + . '' . "\n"; + echo ' + ' . "\n"; if (count($GLOBALS['cfg']['Servers']) > 1) { // offer a chance to login to other servers if the current one failed include_once './libraries/select_server.lib.php';