Line 32 currently reads:

Code:
if (isset($list_box_contents[$row][$col]['align'])) $c_params .= ' ' . $list_box_contents[$row][$col]['align'];
It should be:

Code:
if (!empty($list_box_contents[$row][$col]['align'])) $c_params .= ' align="' . $list_box_contents[$row][$col]['align'] . '"';
The TD align attributes don't work properly otherwise (also breaks XHTML compliance).

-dave