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(" 1) printf(" COLSPAN=%d", colSpan); -printf(">%s", label); +printf(">%s", label); } void webPrintWideCenteredLabelCell(char *label, int colSpan) /* Print label cell over multiple columns in our colors and centered. */ { printf(" 1) printf(" COLSPAN=%d", colSpan); printf(">
%s
", label); } void webPrintLabelCell(char *label) /* Print label cell in our colors. */ { webPrintWideLabelCell(label, 1);