c547caa3d622cffaa83ac0ab484f49e7bdee80ed
max
  Thu Aug 15 14:31:44 2013 -0700
removing one linebreak from bedDetails forms, #10687
diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c
index 731c4c2..3178c3c 100644
--- src/hg/hgc/hgc.c
+++ src/hg/hgc/hgc.c
@@ -23908,33 +23908,31 @@
     conn = hAllocConn(CUSTOM_TRASH);
     bedPart = ct->fieldCount - 2;
     /* header handled by custom track handler */
     }
 
 /* postion, band, genomic size */
 sqlSafef(query, sizeof(query),
       "select * from %s where chrom = '%s' and chromStart = %d and chromEnd = %d and name = '%s'", 
 	table, chrom, start, end, itemName);
 sr = sqlGetResult(conn, query);
 if ((row = sqlNextRow(sr)) != NULL)
     {
     r = bedDetailLoadWithGaps(row, bedPart+2);
     if (isNotEmpty(r->id))
         {
-        printf("<p>");
         printCustomUrl(tdb, r->id, TRUE);
-        printf("</p>");
         }
 
     bedPrintPos((struct bed*)r, bedPart, tdb);
     printf("<br>");
     if (isNotEmpty(r->id) && !sameString("qPcrPrimers", table))
         printf("<B>ID:</B> %s <BR>\n", r->id);
 
     if  (isNotEmpty(r->description))
         printf("%s <BR>\n", r->description);
     }
 sqlFreeResult(&sr);
 /* do not print this for custom tracks, they do this later */
 if (ct == NULL)
     printTrackHtml(tdb);