From d2d8c361f83e2032895df65b19de8011a79f2681 Mon Sep 17 00:00:00 2001 From: sparkyx Date: Tue, 16 May 2023 20:49:44 +0200 Subject: [PATCH] Cosmetic bug : make_array wasn't able to manage accent and quote --- include/lib/database_core.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lib/database_core.class.php b/include/lib/database_core.class.php index c41ea7cbe..5af3f84b5 100644 --- a/include/lib/database_core.class.php +++ b/include/lib/database_core.class.php @@ -676,7 +676,7 @@ class DatabaseCore if ($p_null == 1) { for ($i = $max; $i != 0; $i--) { $r[$i]['value'] = $r[$i - 1]['value']; - $r[$i]['label'] = h($r[$i - 1]['label']); + $r[$i]['label'] = $r[$i - 1]['label']; } $r[0]['value'] = -1; $r[0]['label'] = " ";