Line 32 currently reads:
It should be:Code:if (isset($list_box_contents[$row][$col]['align'])) $c_params .= ' ' . $list_box_contents[$row][$col]['align'];
The TD align attributes don't work properly otherwise (also breaks XHTML compliance).Code:if (!empty($list_box_contents[$row][$col]['align'])) $c_params .= ' align="' . $list_box_contents[$row][$col]['align'] . '"';
-dave



