Merge branch 'QA_4_7'
This commit is contained in:
commit
2af08b93f1
@ -18,6 +18,7 @@ phpMyAdmin - ChangeLog
|
||||
|
||||
4.7.2 (not yet released)
|
||||
- issue #13314 Make theme selection keep current server
|
||||
- issue #13311 Fixed direct login for accounts without password
|
||||
|
||||
4.7.1 (2017-05-25)
|
||||
- issue #13132 Always execute tracking queries as controluser
|
||||
|
||||
@ -344,7 +344,7 @@ class AuthenticationCookie extends AuthenticationPlugin
|
||||
|
||||
// The user just logged in
|
||||
$GLOBALS['PHP_AUTH_USER'] = PMA_sanitizeMySQLUser($_REQUEST['pma_username']);
|
||||
$GLOBALS['PHP_AUTH_PW'] = $_REQUEST['pma_password'];
|
||||
$GLOBALS['PHP_AUTH_PW'] = isset($_REQUEST['pma_password']) ? $_REQUEST['pma_password'] : '';
|
||||
if ($GLOBALS['cfg']['AllowArbitraryServer']
|
||||
&& isset($_REQUEST['pma_servername'])
|
||||
) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user