c83675625d7d650924c65957324f63ed7d3d99f8 hiram Wed Dec 2 10:15:31 2015 -0800 script tag needs a type specification to avoid W3C verification no redmine diff --git src/hg/lib/googleAnalytics.c src/hg/lib/googleAnalytics.c index 636ed2a..4e5e5de 100644 --- src/hg/lib/googleAnalytics.c +++ src/hg/lib/googleAnalytics.c @@ -1,39 +1,39 @@ /* Copyright (C) 2014 The Regents of the University of California * See README in this or parent directory for licensing information. */ #include "common.h" #include "hgConfig.h" #include "hPrint.h" #include "googleAnalytics.h" void googleAnalytics() /* check for analytics configuration item and output google hooks if OK */ { static boolean done = FALSE; if (done) return; done = TRUE; /* do not repeat this by mistake */ char *analyticsKey = cfgOption("analyticsKey"); /* if config is missing or empty, nothing happens here */ if (isEmpty(analyticsKey)) return; /* updated to Universal Analytics code 2014-06-19 */ -hPrintf("\n", analyticsKey); }