Skip to content

Commit

Permalink
Fix: invert space
Browse files Browse the repository at this point in the history
  • Loading branch information
hregis committed Sep 13, 2012
1 parent 1fa84aa commit 6561694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/class/html.form.class.php
Expand Up @@ -371,7 +371,7 @@ function textwithtooltip($text, $htmltext, $tooltipon = 1, $direction = 0, $img

$s="";
if (empty($notabs)) $s.='<table class="nobordernopadding" summary=""><tr>';
if ($direction < 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14">&nbsp;'.$img.'</'.$tag.'>';
if ($direction < 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14">'.$img.'&nbsp;</'.$tag.'>';
if ($text != '') $s.='<'.$tag.$paramfortooltiptd.'>'.$text.'</'.$tag.'>';
if ($direction > 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14">&nbsp;'.$img.'</'.$tag.'>';
if (empty($notabs)) $s.='</tr></table>';
Expand Down

0 comments on commit 6561694

Please sign in to comment.