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:
Diffstat (limited to 'plugins/Contents/Actions/ActionContent.php')
-rw-r--r--plugins/Contents/Actions/ActionContent.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Contents/Actions/ActionContent.php b/plugins/Contents/Actions/ActionContent.php
index e018bff3ec..de93127f99 100644
--- a/plugins/Contents/Actions/ActionContent.php
+++ b/plugins/Contents/Actions/ActionContent.php
@@ -29,8 +29,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, ...
- return !empty($name);
+ return !empty($name) && empty($interaction);
}
protected function getActionsToLookup()