Skip to content

Commit

Permalink
Added support for passing along a page title (utmdt).
Browse files Browse the repository at this point in the history
  • Loading branch information
rwc9u committed May 31, 2011
1 parent 340988e commit b5366d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/analytics_goo/google_analytics_adapter.rb
Expand Up @@ -189,7 +189,8 @@ def track_it(path)
"&utmac=" + self.utmac +
"&utmcc=" + self.utmcc +
"&utmvid="+ self.utmvid +
"&utmip=" + self.utmip
"&utmip=" + self.utmip +
"&utmdt=" + CGI.escape(self.utmdt)
Net::HTTP.start(GA_DOMAIN) {|http|
http.request_get(utm_uri, {"User-Agent" => self.user_agent, "Accept-Language" => self.http_accept_language})
}
Expand Down

0 comments on commit b5366d6

Please sign in to comment.