From 263be5aa0abdce4fd49f745683f3299bcd572f84 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur <eldy@destailleur.fr> Date: Sun, 29 Nov 2015 01:16:56 +0100 Subject: [PATCH] Avoid 2 lines on mall screen --- htdocs/core/class/html.formfile.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/core/class/html.formfile.class.php b/htdocs/core/class/html.formfile.class.php index 2df95872454..7664f5717f8 100644 --- a/htdocs/core/class/html.formfile.class.php +++ b/htdocs/core/class/html.formfile.class.php @@ -178,11 +178,11 @@ class FormFile $out .= '<div>'; $out .= '<div class="float" style="padding-right: 10px;">'; - $out .= '<label for="link">'.$langs->trans("URLToLink") . '</label>: '; + $out .= '<label for="link">'.$langs->trans("URLToLink") . ':</label> '; $out .= '<input type="text" name="link" size="'.$maxlength.'" id="link">'; $out .= '</div>'; $out .= '<div class="float" style="padding-right: 10px;">'; - $out .= '<label for="label">'.$langs->trans("Label") . '</label>: '; + $out .= '<label for="label">'.$langs->trans("Label") . ':</label> '; $out .= '<input type="text" name="label" id="label">'; $out .= '<input type="hidden" name="objecttype" value="' . $object->element . '">'; $out .= '<input type="hidden" name="objectid" value="' . $object->id . '">'; -- GitLab