- milestone: --> v4.0.2
Hi,
On the Ancestry Chart page with the "Individual List", Internet Explorer wan't show empty 'boxes' in the table for Birth, Death, Age.
Hard to explain so I will show you insted in functions_print_lists.php:
// original, 1 line on line 499
//echo "<a href=\"".$person->getLinkUrl()."\" name=\"{$sortkey}\" class=\"list_item\">".$age."</a>";
// added 4 test lines
if ($age)
echo "<a href=\"".$person->getLinkUrl()."\" name=\"{$sortkey}\" class=\"list_item\">".$age."</a>";
else
echo "<a href=\"".$person->getLinkUrl()."\" name=\"{$sortkey}\" class=\"list_item\"> </a>";
In this example for 'Age', " " would be placed in the tables box insted of "" (nothing). With " " the box will appear in IE 7.
This is not an issue in Firefox.
Thanks,
-Im