Merge remote-tracking branch 'origin/QA_4_0' into QA_4_0

This commit is contained in:
Weblate 2013-04-28 12:31:24 +02:00
commit 6da9e83cc8
2 changed files with 11 additions and 1 deletions

View File

@ -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

View File

@ -133,7 +133,16 @@ class AuthenticationConfig extends AuthenticationPlugin
}
$GLOBALS['error_handler']->dispUserErrors();
echo '</td>
</tr>';
</tr>
<tr>
<td>' . "\n";
echo '<a href="'
. $GLOBALS['cfg']['DefaultTabServer']
. PMA_generate_common_url(array()) . '" class="button disableAjax">'
. __('Retry to connect')
. '</a>' . "\n";
echo '</td>
</tr>' . "\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';