ab31f4d6a34a17a3c370cd337e991e9d274bbbcf markd Wed Aug 1 09:43:43 2012 -0700 fixed doc errors with highlighting diff --git src/hg/lib/hui.c src/hg/lib/hui.c index 8a46495..ccece19 100644 --- src/hg/lib/hui.c +++ src/hg/lib/hui.c @@ -3621,32 +3621,32 @@ } void filterBySetCfgUiGuts(struct cart *cart, struct trackDb *tdb, filterBy_t *filterBySet, boolean onOneLine, char *filterTypeTitle, char *selectIdPrefix, char *allLabel) // Does the UI for a list of filterBy structure for either filterBy or highlightBy controls { if (filterBySet == NULL) return; #define FILTERBY_HELP_LINK "<A HREF=\"../goldenPath/help/multiView.html\" TARGET=ucscHelp>help</A>" int count = slCount(filterBySet); if (count == 1) puts("<TABLE cellpadding=3><TR valign='top'>"); else - printf("<B>Filter items by:</B> (select multiple categories and items - %s)" - "<TABLE cellpadding=3><TR valign='top'>\n",FILTERBY_HELP_LINK); + printf("<B>%s items by:</B> (select multiple categories and items - %s)" + "<TABLE cellpadding=3><TR valign='top'>\n",filterTypeTitle,FILTERBY_HELP_LINK); filterBy_t *filterBy = NULL; if (cartOptionalString(cart, "ajax") == NULL) { webIncludeResourceFile("ui.dropdownchecklist.css"); jsIncludeFile("ui.dropdownchecklist.js",NULL); jsIncludeFile("ddcl.js",NULL); } int ix=0; for(filterBy = filterBySet;filterBy != NULL; filterBy = filterBy->next, ix++) { puts("<TD>"); if(count == 1) printf("<B>%s by %s</B> (select multiple items - %s)",filterTypeTitle,filterBy->title,FILTERBY_HELP_LINK);