src/hg/hgGene/hgGene.c 1.113

1.113 2009/02/13 02:38:28 markd
fixed some invalid html
Index: src/hg/hgGene/hgGene.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgGene/hgGene.c,v
retrieving revision 1.112
retrieving revision 1.113
diff -b -B -U 4 -r1.112 -r1.113
--- src/hg/hgGene/hgGene.c	9 Sep 2008 23:12:42 -0000	1.112
+++ src/hg/hgGene/hgGene.c	13 Feb 2009 02:38:28 -0000	1.113
@@ -202,11 +202,11 @@
 
 descrBySql = genoQuery(id, "descriptionSql", conn);
 dyStringPrintf(description, "<B>Description:</B> ");
 if (descrBySql != NULL)
-    dyStringPrintf(description, "%s<BR>", descrBySql);
+    dyStringPrintf(description, "%s<BR>\n", descrBySql);
 else
-    dyStringPrintf(description, "%s<BR>", "No description available");
+    dyStringPrintf(description, "%s<BR>\n", "No description available");
 freez(&descrBySql);
 if (summaryTables != NULL)
     {
     if (sqlTablesExist(conn, summaryTables))
@@ -224,9 +224,9 @@
 		    dyStringPrintf(description, " (%s)", summaryId);
 		}
 	    dyStringPrintf(description, ":</B> %s", summary);
 	    freez(&summary);
-	    dyStringPrintf(description, "<BR>");
+	    dyStringPrintf(description, "<BR>\n");
 	    }
 	}
     }
 return dyStringCannibalize(&description);
@@ -242,9 +242,9 @@
 hPrintf("%s", description);
 freez(&description);
 
 /* print genome position and size */
-hPrintf("<B>Strand:</B> %s</A>\n", curGenePred->strand);
+hPrintf("<B>Strand:</B> %s\n", curGenePred->strand);
 hPrintf("&nbsp;&nbsp;<B>Genomic Size:</B> %d\n", curGeneEnd - curGeneStart);
 
 /* print exon count(s) */
 exonCnt = curGenePred->exonCount;