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';