cfb1153618c1c3f959f2ffb551ad26d81ca3dfc8 galt Mon Jan 30 16:32:44 2017 -0800 oops fix CSP header inclusion, merge was a bit wonky. diff --git src/hg/lib/web.c src/hg/lib/web.c index 455e911..83774c8 100644 --- src/hg/lib/web.c +++ src/hg/lib/web.c @@ -436,37 +436,37 @@ } static void webStartGbOptionalBanner(struct cart *cart, char *db, char *title, boolean doBanner, boolean hgGateway) /* Start HTML with new header and footer design by JWest. Optionally display banner above menubar. Use flag with hgGateway, till that is migrated. */ { puts("Content-type:text/html\n"); char *csp = getCspMetaHeader(); if (hgGateway) { printf( #include "jWestHeader.h" - , title, title); + , csp, title); } else { printf( #include "gbHeader.h" - , title); + , csp, title); } if (doBanner) { printf( #include "jWestBanner.h" , title); } freeMem(csp); webPushErrHandlersCartDb(cart, db); htmlWarnBoxSetup(stdout); // Add hotlinks bar char *navBar = menuBar(cart, db); if (navBar)