Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoratomu330 <atomu.work@gmail.com>2022-07-18 16:27:31 +0300
committerMaurĂ­cio Meneghini Fauth <mauricio@fauth.dev>2022-07-19 19:04:59 +0300
commit6957064cea185c43f7222a215abb19ed17538f21 (patch)
treed56c73fa1ce7414307acef6e50d0af472e575045 /ChangeLog
parentddb4d5b730a4c9f49ddb7cc0430ae190c69304f6 (diff)
replace isset to empty
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 <atomu.work@gmail.com> Signed-off-by: MaurĂ­cio Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog1
1 files changed, 1 insertions, 0 deletions
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