Merge remote-tracking branch 'origin/QA_4_6' into QA_4_6
This commit is contained in:
commit
2d4c88ab15
@ -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
|
||||
|
||||
@ -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);
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user