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>2017-10-05 04:46:53 +0300
committerGitHub <noreply@github.com>2017-10-05 04:46:53 +0300
commit3de5605ffdccb35a7ce03424a6b318af4461735f (patch)
treed315b1cad3c0dde2b8a7b292d652e39eedd772a4 /plugins/CoreHome/Tracker
parent5362d989837335d93364c73d76d24ee86a6979d2 (diff)
Log action primary needs to return an array, not a string
Diffstat (limited to 'plugins/CoreHome/Tracker')
-rw-r--r--plugins/CoreHome/Tracker/LogTable/Action.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/Tracker/LogTable/Action.php b/plugins/CoreHome/Tracker/LogTable/Action.php
index c211f0dffd..43060c2931 100644
--- a/plugins/CoreHome/Tracker/LogTable/Action.php
+++ b/plugins/CoreHome/Tracker/LogTable/Action.php
@@ -34,6 +34,6 @@ class Action extends LogTable
public function getPrimaryKey()
{
- return 'idaction';
+ return array('idaction');
}
}