From 65616946582b5bbea72e5a2a01017296197c9c04 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Thu, 13 Sep 2012 10:03:58 +0200 Subject: [PATCH] Fix: invert space --- 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 5340083141a8d..ed1193e696ef0 100644 --- a/htdocs/core/class/html.form.class.php +++ b/htdocs/core/class/html.form.class.php @@ -371,7 +371,7 @@ function textwithtooltip($text, $htmltext, $tooltipon = 1, $direction = 0, $img $s=""; if (empty($notabs)) $s.=''; - if ($direction < 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14"> '.$img.''; + if ($direction < 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14">'.$img.' '; if ($text != '') $s.='<'.$tag.$paramfortooltiptd.'>'.$text.''; if ($direction > 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14"> '.$img.''; if (empty($notabs)) $s.='
';