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-08-27 21:10:20 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-08-27 21:10:20 +0400
commit10ecff50c3e25cab6501dbc73a1c64131e21db7e (patch)
treeb5c29fb038563d0ec724e8c1f95f07c8350b7f31 /plugins/Contents/Actions
parentce8d27ce90be5be96ae540cc5805c34601590260 (diff)
refs #4996 worked on detecting content name, piece and target. Next: Sending the impressions to Piwik via bulk tracking
Diffstat (limited to 'plugins/Contents/Actions')
-rw-r--r--plugins/Contents/Actions/ActionContent.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Contents/Actions/ActionContent.php b/plugins/Contents/Actions/ActionContent.php
index de93127f99..ecc6769813 100644
--- a/plugins/Contents/Actions/ActionContent.php
+++ b/plugins/Contents/Actions/ActionContent.php
@@ -28,7 +28,7 @@ class ActionContent extends Action
public static function shouldHandle(Request $request)
{
- $name = $request->getParam('c_n');
+ $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) && empty($interaction);