From 76749acd1accad7d9a27164c24fff8e884f9a127 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 21 May 2007 18:24:44 +0000 Subject: [PATCH] =?UTF-8?q?Fonction=20pour=20afficher=20un=20tooltip=20plu?= =?UTF-8?q?s=20g=E9n=E9rique.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/html.form.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/html.form.class.php b/htdocs/html.form.class.php index 2f205afbd9c..e3067f71e65 100644 --- a/htdocs/html.form.class.php +++ b/htdocs/html.form.class.php @@ -104,7 +104,7 @@ class Form if ($text) { $s.=''.$text; - $s.=' '; + if ($direction) $s.=' '; $s.=''; } if ($direction) $s.=''.$img.''; @@ -115,7 +115,7 @@ class Form if ($text) { $s.=''; - $s.=' '; + if ($direction) $s.=' '; $s.=$text.''; } }