From 6a19ac455a8379bc180971cb04393efe2fbfc7a3 Mon Sep 17 00:00:00 2001 From: Thomas Steur Date: Thu, 18 Sep 2014 16:18:11 +0200 Subject: 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 --- plugins/Contents/Actions/ActionContent.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'plugins/Contents/Actions') 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() -- cgit v1.2.3