8e592c5d2ce91d47ada522fd181796622f53e010
kate
  Sun May 26 13:10:52 2013 -0700
HTML formatting correction, fixes extra space before comman in cell type lists, found by Brooke during QA. refs #10097
diff --git src/hg/lib/web.c src/hg/lib/web.c
index ce0ff5f..39b12d1 100644
--- src/hg/lib/web.c
+++ src/hg/lib/web.c
@@ -1121,31 +1121,31 @@
 
 void webPrintDoubleCell(double val)
 /* Print right-justified cell in our colors with two digits to right of decimal. */
 {
 webPrintLinkCellRightStart();
 printf("%4.2f", val);
 webPrintLinkCellEnd();
 }
 
 void webPrintWideLabelCell(char *label, int colSpan)
 /* Print label cell over multiple columns in our colors. */
 {
 printf("<TD BGCOLOR='#"HG_COL_TABLE_LABEL"'");
 if (colSpan > 1)
     printf(" COLSPAN=%d", colSpan);
-printf("><span style='color:#FFFFFF;'><B>%s</B></spanT></TD>", label);
+printf("><span style='color:#FFFFFF;'><B>%s</B></span></TD>", label);
 }
 
 void webPrintWideCenteredLabelCell(char *label, int colSpan)
 /* Print label cell over multiple columns in our colors and centered. */
 {
 printf("<TD BGCOLOR='#" HG_COL_TABLE_LABEL "'");
 if (colSpan > 1)
     printf(" COLSPAN=%d", colSpan);
 printf("><CENTER><span style='color:#FFFFFF;'><B>%s</B></span></CENTER></TD>", label);
 }
 
 void webPrintLabelCell(char *label)
 /* Print label cell in our colors. */
 {
 webPrintWideLabelCell(label, 1);