From b12b1ae08a64cccc85313ff4dce7fe3d56ed4b5d Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Sun, 24 Apr 2016 20:50:23 +0530 Subject: [PATCH 1/2] ORDER BY clause should include Select subexpressions' names Signed-off-by: Deven Bansod --- libraries/server_privileges.lib.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/server_privileges.lib.php b/libraries/server_privileges.lib.php index 74354fdb1f..bfa13cfc3d 100644 --- a/libraries/server_privileges.lib.php +++ b/libraries/server_privileges.lib.php @@ -3822,7 +3822,8 @@ function PMA_getHtmlForInitials($array_initials) } $initials = $GLOBALS['dbi']->tryQuery( - 'SELECT DISTINCT UPPER(LEFT(`User`,1)) FROM `user` ORDER BY `User` ASC', + 'SELECT DISTINCT UPPER(LEFT(`User`,1)) FROM `user`' + . ' ORDER BY UPPER(LEFT(`User`,1)) ASC', null, PMA\libraries\DatabaseInterface::QUERY_STORE ); From 6d02018dc156abd17b1e778d9459c632a399618d Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Mon, 25 Apr 2016 09:53:03 +0530 Subject: [PATCH 2/2] ChangeLog entry for #12211 Fixed #12211 in b12b1ae Signed-off-by: Deven Bansod --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 0ac5f8efd7..dcf9d247be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,6 +19,7 @@ phpMyAdmin - ChangeLog - issue #12200 Fixed check for ndb version - issue #12206 Fixed loading of configuration file - issue #12204 Check if sessions are working and report failures +- issue #12211 non-clickable initial letter for users / and can't modify users with MySQL 5.7.12 4.6.0.0 (2016-03-22) + issue #11456 Disabled storage engines