- Issue created by @standingtall
Just updated to latest 7.x and it appears special URL tracking no longer works.
This is the bit of code from googleanalytics.js that doesn't fire anymore.
/**
* Check whether this is a special URL or not.
*
* URL types:
* - gotwo.module /go/* links.
*
* @param string url
* The web url to check.
*
* @return boolean
*/
Drupal.googleanalytics.isInternalSpecial = function (url) {
var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
return isInternalSpecial.test(url);
};
Active
2.8
Code