Subject: | missing </tr> in html output |
Here is a patch to fix a missing closing row tag in Data/Tabular/Output/HTML.pm. I think there are a few other bugs in there too.
*** HTML.pm Sun Sep 18 23:36:11 2005
--- HTML.pm.fix Wed Nov 16 15:23:20 2005
*************** sub html
*** 108,113 ****
--- 108,114 ----
push(@table, "</td>\n");
}
}
+ push(@table, " </tr>\n");
}
$ret .= join('', @table);
$ret .= "</table>\n";