From 6957064cea185c43f7222a215abb19ed17538f21 Mon Sep 17 00:00:00 2001 From: atomu330 Date: Mon, 18 Jul 2022 22:27:31 +0900 Subject: replace isset to empty MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IF statement ! isset($this->uiprefs) was causing issue. Private property 'uiprefs' is initialized to empty array, so ! isset($this->uiprefs) is always FALSE; It's not hopefull, so I replace ! isset($this->uiprefs) to empty($this->uiprefs) to fix #17617 bug; Fixes #17617 Closes #17644 Signed-off-by: Atomu Oku Signed-off-by: MaurĂ­cio Meneghini Fauth --- ChangeLog | 1 + 1 file changed, 1 insertion(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 6d34cbca29..dd67a12d7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,6 +19,7 @@ phpMyAdmin - ChangeLog - issue #17584 It's now possible to browse a database that includes two % in its name - issue Fix PHP 8.2 deprecated string interpolation syntax - issue Some languages are now correctly detected from the HTTP header +- issue #17617 Sorting is correctly remembered when $cfg['RememberSorting'] is true 5.2.0 (2022-05-10) - issue #16521 Upgrade Bootstrap to version 5 -- cgit v1.2.3