From a57e0d3505b2da6a41c7babe220b4eb8aed52ba3 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 4 Sep 2014 19:27:59 +0200 Subject: [PATCH] Fix: Do not use   as value of a list --- htdocs/core/class/html.form.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php index cec72aacacb..7dd220f25be 100644 --- a/htdocs/core/class/html.form.class.php +++ b/htdocs/core/class/html.form.class.php @@ -3949,7 +3949,7 @@ class Form if ($show_empty) { - $out.=''."\n"; + $out.=''."\n"; // Do not use   here. It will show it when list is not ajaxed } if (is_array($array))