maximum length limitation to UserGroup name

Fixes #13562

Signed-off-by: Anant Jain <anantjain60@gmail.com>
Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Anant Jain 2017-08-04 19:13:42 +05:30 committed by Michal Čihař
parent baf5369bb5
commit e251184179
2 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,7 @@ phpMyAdmin - ChangeLog
- issue #13523 Missing newline in ALTER exports
- issue #13414 Fixed several compatibility issues with PHP 7.2
- issue #13550 Fixed copy results to clipboard
- issue #13562 Add limitation for user group length
4.7.3 (2017-07-20)
- issue #13447 Large multi-line query removes Export operation and blanks query box options

View File

@ -232,8 +232,7 @@ function PMA_getHtmlToEditUserGroup($userGroup = null)
if ($userGroup == null) {
$html_output .= '<label for="userGroup">' . __('Group name:') . '</label>';
$html_output .= '<input type="text" name="userGroup" '
. 'autocomplete="off" required="required" />';
$html_output .= '<input type="text" name="userGroup" maxlength="64" autocomplete="off" required="required" />';
$html_output .= '<div class="clearfloat"></div>';
}