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@googlemail.com>2014-09-18 18:18:11 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-09-18 18:18:11 +0400
commit6a19ac455a8379bc180971cb04393efe2fbfc7a3 (patch)
treeb8e98c5c953cfadbf306da693bb55e4d9e21f79c /plugins/Contents/Actions
parenta0ca00a8bbb9cda7b34a1ad6990e7877f9bef201 (diff)
refs #4996 do not return any impression or interaction in live.getVisitorDetails as it would not be accurate anyway. For instance a download or outlink can be an interaction as well when tracked together etc
Diffstat (limited to 'plugins/Contents/Actions')
-rw-r--r--plugins/Contents/Actions/ActionContent.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/Contents/Actions/ActionContent.php b/plugins/Contents/Actions/ActionContent.php
index e97ef92310..024c403d81 100644
--- a/plugins/Contents/Actions/ActionContent.php
+++ b/plugins/Contents/Actions/ActionContent.php
@@ -28,10 +28,9 @@ class ActionContent extends Action
public static function shouldHandle(Request $request)
{
- $name = $request->getParam('c_n');
- $interaction = $request->getParam('c_i'); // if interaction is set we want it to be for instance an outlink, download, ...
+ $name = $request->getParam('c_n');
- return !empty($name) && empty($interaction);
+ return !empty($name);
}
protected function getActionsToLookup()