Fix: better

This commit is contained in:
Regis Houssin 2012-09-13 10:02:45 +02:00
parent 9130dbda4e
commit 1fa84aa92b

View File

@ -371,16 +371,9 @@ class Form
$s=""; $s="";
if (empty($notabs)) $s.='<table class="nobordernopadding" summary=""><tr>'; if (empty($notabs)) $s.='<table class="nobordernopadding" summary=""><tr>';
if ($direction < 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14">'.$img.'</'.$tag.'>'; if ($direction < 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14">&nbsp;'.$img.'</'.$tag.'>';
if ($text != '') if ($text != '') $s.='<'.$tag.$paramfortooltiptd.'>'.$text.'</'.$tag.'>';
{ if ($direction > 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14">&nbsp;'.$img.'</'.$tag.'>';
$s.='<'.$tag.$paramfortooltiptd.'>';
if ($direction < 0) $s.='&nbsp;';
$s.=$text;
if ($direction > 0) $s.='&nbsp;';
$s.='</'.$tag.'>';
}
if ($direction > 0) $s.='<'.$tag.$paramfortooltipimg.' valign="top" width="14">'.$img.'</'.$tag.'>';
if (empty($notabs)) $s.='</tr></table>'; if (empty($notabs)) $s.='</tr></table>';
return $s; return $s;