From e251184179e0ce91a09bd7f25bfb61d135207b45 Mon Sep 17 00:00:00 2001 From: Anant Jain Date: Fri, 4 Aug 2017 19:13:42 +0530 Subject: [PATCH] maximum length limitation to UserGroup name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #13562 Signed-off-by: Anant Jain Signed-off-by: Michal Čihař --- ChangeLog | 1 + libraries/server_user_groups.lib.php | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4beb205f14..1f34d3a5c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/libraries/server_user_groups.lib.php b/libraries/server_user_groups.lib.php index d10f638ed4..ca22fb5e58 100644 --- a/libraries/server_user_groups.lib.php +++ b/libraries/server_user_groups.lib.php @@ -232,8 +232,7 @@ function PMA_getHtmlToEditUserGroup($userGroup = null) if ($userGroup == null) { $html_output .= ''; - $html_output .= ''; + $html_output .= ''; $html_output .= '
'; }