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 <thomas.steur@gmail.com>2015-12-04 06:42:43 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-12-04 06:42:43 +0300
commitea0ee79d05e7d27df4c360e5a28bcfa2834ab183 (patch)
tree07ce7335f92a0e0629a616b566ffdbcf8e356255
parent34b615a8d46a8d4cac90dd17dc7a34a18fc232fb (diff)
there was a weird character after ||
-rw-r--r--js/piwik.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/piwik.js b/js/piwik.js
index 94816854a8..344e5436e9 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -4905,7 +4905,7 @@ if (typeof Piwik !== 'object') {
var aliasPath = getPathName(configHostAlias);
var currentPath = getPathName(currentUrl);
- if (!aliasPath || aliasPath === '/' || !currentPath || currentPath === '/') {
+ if (!aliasPath || aliasPath === '/' || !currentPath || currentPath === '/') {
// no path set that would be useful for cookiePath
return;
}