8826db79c9e133cbf19c6f624c57a3557b41ddce kate Thu Jan 14 14:42:12 2016 -0800 Fix HTML syntax err. diff --git src/hg/lib/gtexUi.c src/hg/lib/gtexUi.c index 352f446..327b3aa 100644 --- src/hg/lib/gtexUi.c +++ src/hg/lib/gtexUi.c @@ -175,38 +175,38 @@ boolean isChecked = FALSE; for (tis = tissues; tis != NULL; tis = tis->next) { puts("\n<tr valign='top'>"); // checkbox if (hashNumEntries(checkHash) == 0) isChecked = TRUE; else isChecked = (hashLookup(checkHash, tis->name) != NULL); printf("<td><input type=checkbox name=\"%s\" value=\"%s\" %s></td>", name, tis->name, isChecked ? "checked" : ""); // color patch printf("\n%s", makeTissueColorPatch(tis)); // tissue name - printf("\n<td style='font-size:75%%'> %s/td>", tis->description); + printf("\n<td style='font-size:75%%'> %s</td>", tis->description); // sample count int samples = hashIntValDefault(tscHash, tis->name, 0); - printf("\n<td abbr='%05d' style='font-size:75%%; align='right';> %d/td>", samples, samples); + printf("\n<td abbr='%05d' style='font-size:75%%; align='right';> %d</td>", samples, samples); // organ - printf("\n<td style='font-size:75%%'> %s/td>", tis->organ); + printf("\n<td style='font-size:75%%'> %s</td>", tis->organ); // system - printf("\n<td style='font-size:75%%'> %s/td>", getSystem(tis)); + printf("\n<td style='font-size:75%%'> %s</td>", getSystem(tis)); puts("\n</tr>"); } puts("</tbody>"); puts("</table>"); char buf[512]; safef(buf, sizeof(buf), "%s%s", cgiMultListShadowPrefix(), name); cgiMakeHiddenVar(buf, "0"); } static void makeGroupedTissueCheckboxes(char *name, struct gtexTissue *tissues, struct slName *checked) { struct hash *checkHash = hashNew(0); struct slName *sel; for (sel = checked; sel != NULL; sel = sel->next) hashAdd(checkHash, sel->name, sel->name);