From b58e03f5fc52f293250e3e9fa99e48c958c1c46c Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sat, 22 Feb 2025 07:56:22 +0100 Subject: [PATCH] Editor: PDO: Select value of foreign key in edit (bug #847) --- adminer/include/functions.inc.php | 2 +- changes.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/adminer/include/functions.inc.php b/adminer/include/functions.inc.php index 73b52942..6612b84e 100644 --- a/adminer/include/functions.inc.php +++ b/adminer/include/functions.inc.php @@ -202,7 +202,7 @@ function optionlist($options, $selected = null, $use_keys = false) { $opts = $v; } foreach ($opts as $key => $val) { - $return .= '' . h($val); + $return .= '' . h($val); } if (is_array($v)) { $return .= ''; diff --git a/changes.txt b/changes.txt index 5c2c82d4..74fffddf 100644 --- a/changes.txt +++ b/changes.txt @@ -1,5 +1,6 @@ Adminer 4.16.1-dev: SQLite: Show all supported pragmas in Variables +Editor: PDO: Select value of foreign key in edit (bug #847) Adminer 4.16.0 (released 2025-02-20): MySQL: Fix saving bit(64) values (bug #839)