Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2016-02-24 12:32:43 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2016-02-24 12:32:43 +0300
commit5f7aaf37c89caa995a0129249efe9d99486e1dca (patch)
tree8952a0e9f96a84975c55c7b2eaab7af434ff07ee
parent44a6d4c12b55c0fbcdb08b2a77306aa9f420db09 (diff)
parent84e9f2a86f55f2c0908734c1c6bad848185559f7 (diff)
Merge pull request #9831 from BBosman/patch-1
Remove unused variable from piwik.js
-rw-r--r--js/piwik.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/piwik.js b/js/piwik.js
index 64998cd0cd..639f5f05e4 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -4050,8 +4050,7 @@ if (typeof Piwik !== 'object') {
* Log the page view / visit
*/
function logPageView(customTitle, customData) {
- var now = new Date(),
- request = getRequest('action_name=' + encodeWrapper(titleFixup(customTitle || configTitle)), customData, 'log');
+ var request = getRequest('action_name=' + encodeWrapper(titleFixup(customTitle || configTitle)), customData, 'log');
sendRequest(request, configTrackerPause);
}