Skip to content

Commit

Permalink
Merge branch 'QA_4_7'
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Jun 2, 2017
2 parents fe3f8ce + 8332236 commit 2af08b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/auth/AuthenticationCookie.php
Expand Up @@ -344,7 +344,7 @@ public function authCheck()

// 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'])
) {
Expand Down

0 comments on commit 2af08b9

Please sign in to comment.