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

This commit is contained in:
Weblate 2016-11-29 04:23:34 +01:00
commit 2d4c88ab15
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ phpMyAdmin - ChangeLog
- issue #12735 Incorrect parameters to escapeString in Node.php
- issue #12734 Fix PHP error when mbstring is not installed
- issue #12736 Don't force partition count to be specified when creating a new table
- issue #12759 Fix Notice regarding 'Undefined index: old_usergroup'
4.6.5 (2016-11-24)
- issue Remove potentionally license problematic sRGB profile

View File

@ -4355,7 +4355,7 @@ function PMA_addUser(
// Copy the user group while copying a user
$old_usergroup =
$_REQUEST['old_usergroup'] ? $_REQUEST['old_usergroup'] : null;
isset($_REQUEST['old_usergroup']) ? $_REQUEST['old_usergroup'] : null;
PMA_setUserGroup($_REQUEST['username'], $old_usergroup);