Fix: i can view a zero value

This commit is contained in:
Regis Houssin 2010-09-30 08:41:05 +00:00
parent a2844b5575
commit 1b41d7b936

View File

@ -193,7 +193,7 @@ class Form
$s.='<table class="nobordernopadding" summary=""><tr>'; $s.='<table class="nobordernopadding" summary=""><tr>';
if ($direction > 0) if ($direction > 0)
{ {
if ($text) if (!empty($text) || $text == 0)
{ {
$s.='<td'.$paramfortooltiptext.'>'.$text; $s.='<td'.$paramfortooltiptext.'>'.$text;
if ($direction) $s.='&nbsp;'; if ($direction) $s.='&nbsp;';
@ -204,7 +204,7 @@ class Form
else else
{ {
if ($direction) $s.='<td'.$paramfortooltippicto.' valign="top" width="14">'.$img.'</td>'; if ($direction) $s.='<td'.$paramfortooltippicto.' valign="top" width="14">'.$img.'</td>';
if ($text) if (!empty($text) || $text == 0)
{ {
$s.='<td'.$paramfortooltiptext.'>'; $s.='<td'.$paramfortooltiptext.'>';
if ($direction) $s.='&nbsp;'; if ($direction) $s.='&nbsp;';