a54411722ece22f6cf1c7c04d8519901c1986622
hiram
  Thu Jul 31 10:43:07 2014 -0700
super track bigBed was trying to find table info does not exist refs #13713
diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index dc3cd07..91b6e9d 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -7919,31 +7919,31 @@
     {
     hPrintf("<a title='encode project' href='../ENCODE'><img height='16' width='16' "
             "src='../images/encodeThumbnail.jpg'></a>\n");
     return TRUE;
     }
 return FALSE;
 }
 
 void printUpdateTime(char *database, struct trackDb *tdb,
     struct customTrack *ct)
 /* display table update time */
 {
 if (trackHubDatabase(database))
     return;
 /* have not decided what to do for a composite container */
-if (tdbIsComposite(tdb))
+if (tdbIsComposite(tdb) || tdbIsSuper(tdb))
     return;
 struct sqlConnection *conn = NULL;
 char *tableName = NULL;
 if (isCustomTrack(tdb->track))
     {
     if (ct)
 	{
 	conn =  hAllocConn(CUSTOM_TRASH);
 	tableName = ct->dbTableName;
 	}
     }
 else if (startsWith("big", tdb->type))
     {
     char *tableName = hTableForTrack(database, tdb->table);
     struct sqlConnection *conn =  hAllocConnTrack(database, tdb);