Skip to content

Commit

Permalink
fixes #3746 - Bug in overlay when using setSiteId with a string value
Browse files Browse the repository at this point in the history
  • Loading branch information
robocoder committed Feb 10, 2013
1 parent a85608d commit 090fe54
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion js/piwik.js
Expand Up @@ -932,7 +932,7 @@ var
if (match) {
// check idsite
var idsite = match[1];
if (parseInt(idsite, 10) !== configTrackerSiteId) {
if (idsite !== '' + configTrackerSiteId) {
return false;
}
// store overlay session info in window name
Expand Down

0 comments on commit 090fe54

Please sign in to comment.