2154c402b569cb4a7acbd4c36710219e8a5b20dd max Thu May 23 00:34:27 2024 -0700 fix typo in error message diff --git src/hg/hgTracks/hgTracks.c src/hg/hgTracks/hgTracks.c index 483eb67..89daf89 100644 --- src/hg/hgTracks/hgTracks.c +++ src/hg/hgTracks/hgTracks.c @@ -9504,31 +9504,31 @@ "document.editHubForm.submit();return true;"); } } hPrintf("</td><td style='text-align:center; width:90%%;'>\n<B>%s</B>", group->label); hPrintf("</td><td style='text-align:right;'>\n"); if (isHubTrack(group->name)) { char *hubName = hubNameFromGroupName(group->name); struct trackHub *hub = grabHashedHub(hubName); // visibility: hidden means that the element takes up space so the center alignment is not disturbed. if (hub != NULL) { if (hub->descriptionUrl == NULL) - hPrintf("<span title='The track hub authors have no provided a descriptionUrl with background " + hPrintf("<span title='The track hub authors have not provided a descriptionUrl with background " "information about this track hub' href='../goldenPath/help/hgTrackHubHelp.html#hub.txt' " "style='color:#FFF; font-size: 13px;' target=_blank>No Info</a> "); else hPrintf("<a title='Documentation about this track hub, provided by the track hub authors (not UCSC)' href='%s' " "style='color:#FFF; font-size: 13px;' target=_blank>Info</a> ", hub->descriptionUrl); } safef(idText, sizeof idText, "%s_%d_disconn", hubName, disconCount); disconCount++; hPrintf("<input name=\"hubDisconnectButton\" id='%s'" " type=\"button\" value=\"disconnect\">\n", idText); jsOnEventByIdF("click", idText, "document.disconnectHubForm.elements['hubId'].value='%s';" "document.disconnectHubForm.submit();return true;", hubName + strlen(hubTrackPrefix));