ae63ce55185746c5fabb2ead8cc20215faada36d max Mon Nov 3 08:03:14 2025 -0800 adding ancient dna track, refs #36592 diff --git src/hg/lib/cart.c src/hg/lib/cart.c index 98cbf7baf8b..17c78eb6d04 100644 --- src/hg/lib/cart.c +++ src/hg/lib/cart.c @@ -1624,35 +1624,30 @@ void cartRemove(struct cart *cart, char *var); static void genericCgiSetup() /* Run steps that all CGIs must do that unrelated to the cart: timeout, logging setup, UDC. */ { static boolean genericSetupDone = FALSE; // do this only once per execution if (genericSetupDone) return; genericSetupDone = TRUE; cgiApoptosisSetup(); -if (cfgOptionBooleanDefault("showEarlyErrors", FALSE)) - errAbortSetDoContentType(TRUE); - -if (cfgOptionBooleanDefault("suppressVeryEarlyErrors", FALSE)) - htmlSuppressErrors(); setUdcCacheDir(); netSetTimeoutErrorMsg("Connection timeout: either the server is offline or any firewall between UCSC and the server blocks the connection."); } struct cart *cartNew(char *userId, char *sessionId, char **exclude, struct hash *oldVars) /* Load up cart from user & session id's. Exclude is a null-terminated list of * strings to not include */ { genericCgiSetup(); struct cart *cart; struct sqlConnection *conn = cartDefaultConnector();