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
path: root/core
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-04-03 06:50:25 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-04-03 06:50:25 +0400
commitf5bd856abd1499c3c087a145dcb455e4af8ec92c (patch)
treea1acb62ef61cfd73bd239f610d4b2ba3c02347f2 /core
parentd5e6e8f7b783f41324ec4aee4e13bd0eb159f87f (diff)
fix method call
Diffstat (limited to 'core')
-rw-r--r--core/Tracker/Request.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Tracker/Request.php b/core/Tracker/Request.php
index ab79d5f470..3c217f6921 100644
--- a/core/Tracker/Request.php
+++ b/core/Tracker/Request.php
@@ -356,7 +356,7 @@ class Request
foreach ($customVar as $id => $keyValue) {
$id = (int)$id;
if ($id < 1
- || $id > CustomVariablesModel::getMaxCustomVariables()
+ || $id > CustomVariables::getMaxCustomVariables()
|| count($keyValue) != 2
|| (!is_string($keyValue[0]) && !is_numeric($keyValue[0]))
) {