Skip to content

Commit

Permalink
Fix typo in <noscript> tracking code
Browse files Browse the repository at this point in the history
The query parameter should be "idsite" (all lowercase). Otherwise, Piwik
throws an error and tracking without JavaScript does not work.

See https://forum.piwik.org/t/getting-invalid-idsite-error/12287
  • Loading branch information
TheLalaMan committed Oct 21, 2016
1 parent b17d43c commit 4fca824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Private/Templates/Prototypes/TrackingCode.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
})();

</script>
<noscript><p><img src="//{settings.host}/piwik.php?idSite={settings.idSite}" style="border:0;" alt="" /></p></noscript>
<noscript><p><img src="//{settings.host}/piwik.php?idsite={settings.idSite}" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->

0 comments on commit 4fca824

Please sign in to comment.