From 410b291ad84e935b3d2875044e16996e8e1dd09b Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 3 Feb 2019 20:52:39 +0100 Subject: [PATCH] Fix quote not closed --- htdocs/core/class/html.form.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php index 2d5dc78b1e9..89c1746ea76 100644 --- a/htdocs/core/class/html.form.class.php +++ b/htdocs/core/class/html.form.class.php @@ -3830,7 +3830,7 @@ class Form global $langs,$conf; global $useglobalvars; - $more=''; + $more=''; $formconfirm=''; $inputok=array(); $inputko=array(); @@ -3875,7 +3875,7 @@ class Form elseif ($input['type'] == 'select') { $more.=''; - if (! empty($input['label'])) $more.=$input['label'].''; $more.=$this->selectarray($input['name'], $input['values'], $input['default'], 1, 0, 0, $moreattr, 0, 0, 0, '', $morecss); $more.=''."\n"; }